plugins/nvim-web-devicons: init

This commit is contained in:
refaelsh 2024-09-05 16:56:34 +00:00 committed by Austin Horstman
parent 8ae9e4d8a1
commit 83aed0e6a3
No known key found for this signature in database
3 changed files with 23 additions and 0 deletions

View file

@ -239,6 +239,7 @@
./utils/vim-css-color.nix
./utils/vim-matchup.nix
./utils/wakatime.nix
./utils/web-devicons.nix
./utils/which-key.nix
./utils/wilder.nix
./utils/yanky.nix

View file

@ -0,0 +1,17 @@
{ 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;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.web-devicons.enable = true;
};
}