mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 01:38:40 +02:00
18 lines
352 B
Nix
18 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;
|
||
|
};
|
||
|
}
|