This commit is contained in:
2021-10-23 17:53:31 +01:00
parent 30148a6529
commit 7ebec48d40
17 changed files with 171 additions and 596 deletions

22
user/neovim/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{ pkgs, ... }:
{
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
plugins = with pkgs.vimPlugins; [
fzf-vim
gruvbox-nvim
nerdtree
nvim-lspconfig
(nvim-treesitter.withPlugins (plugins: pkgs.tree-sitter.allGrammars))
nvim-whichkey-setup-lua
vim-nix
];
};
}