mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/nvim-web-devicons: init
This commit is contained in:
parent
8ae9e4d8a1
commit
83aed0e6a3
3 changed files with 23 additions and 0 deletions
|
@ -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
|
||||
|
|
17
plugins/utils/web-devicons.nix
Normal file
17
plugins/utils/web-devicons.nix
Normal 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;
|
||||
};
|
||||
}
|
5
tests/test-sources/plugins/utils/web-devicons.nix
Normal file
5
tests/test-sources/plugins/utils/web-devicons.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.web-devicons.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue