diff options
author | Soispha <soispha@vhack.eu> | 2023-08-24 21:39:54 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-24 21:39:54 +0200 |
commit | bcc505ec10ed86d672dc140bdb0174fcd84aa5b3 (patch) | |
tree | eaf63063beb3919cc1df215ba2af7b7296669d45 | |
parent | Feat(hm/conf/neovim/plugins/leap): Init (diff) | |
download | nixos-config-bcc505ec10ed86d672dc140bdb0174fcd84aa5b3.tar.gz nixos-config-bcc505ec10ed86d672dc140bdb0174fcd84aa5b3.zip |
Feat(hm/conf/neovim/plugins/lspkind): Init
-rw-r--r-- | home-manager/soispha/config/neovim/nixvim/plugins/lspkind/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lspkind/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lspkind/default.nix new file mode 100644 index 00000000..ed7d411b --- /dev/null +++ b/home-manager/soispha/config/neovim/nixvim/plugins/lspkind/default.nix @@ -0,0 +1,6 @@ +{...}: { + programs.nixvim.plugins.lspkind = { + enable = true; + preset = "default"; # "codicons" is only for a font patched with vscode-codeicons. + }; +} |