From b038bc18fd4c388d4f17b6e72f1669c4ccf97b69 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sat, 6 Apr 2024 02:09:24 +0200 Subject: [PATCH] feat: add devicons nvim plugin --- modules/home-manager/cli/neovim/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/home-manager/cli/neovim/default.nix b/modules/home-manager/cli/neovim/default.nix index 8b90b0e..ae4424e 100644 --- a/modules/home-manager/cli/neovim/default.nix +++ b/modules/home-manager/cli/neovim/default.nix @@ -95,6 +95,13 @@ in config = (builtins.readFile ./files/neotree.lua); } nui-nvim + { + plugin = nvim-web-devicons; + type = "lua"; + config='' + require('nvim-web-devicons').setup {} + ''; + } { plugin = nvim-lint; type = "lua";