Skip to content

Commit 83aed0e

Browse files
refaelshkhaneliman
authored andcommitted
plugins/nvim-web-devicons: init
1 parent 8ae9e4d commit 83aed0e

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

plugins/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@
239239
./utils/vim-css-color.nix
240240
./utils/vim-matchup.nix
241241
./utils/wakatime.nix
242+
./utils/web-devicons.nix
242243
./utils/which-key.nix
243244
./utils/wilder.nix
244245
./utils/yanky.nix

plugins/utils/web-devicons.nix

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{ lib, ... }:
2+
let
3+
inherit (lib.nixvim) defaultNullOpts;
4+
in
5+
lib.nixvim.neovim-plugin.mkNeovimPlugin {
6+
name = "web-devicons";
7+
originalName = "nvim-web-devicons";
8+
luaName = "nvim-web-devicons";
9+
package = "nvim-web-devicons";
10+
11+
maintainers = [ lib.maintainers.refaelsh ];
12+
13+
settingsExample = {
14+
color_icons = true;
15+
strict = true;
16+
};
17+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
empty = {
3+
plugins.web-devicons.enable = true;
4+
};
5+
}

0 commit comments

Comments
 (0)