mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
17 lines
352 B
Nix
17 lines
352 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib.nixvim) defaultNullOpts;
|
|
in
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
|
name = "web-devicons";
|
|
originalName = "nvim-web-devicons";
|
|
luaName = "nvim-web-devicons";
|
|
package = "nvim-web-devicons";
|
|
|
|
maintainers = [ lib.maintainers.refaelsh ];
|
|
|
|
settingsExample = {
|
|
color_icons = true;
|
|
strict = true;
|
|
};
|
|
}
|