This commit is contained in:
Philipp Hochkamp 2023-04-30 23:17:42 +02:00
parent da23e52670
commit d59bfa1906
3 changed files with 28 additions and 65 deletions

View file

@ -76,7 +76,7 @@ in
src = inputs.noice-nvim;
};
in
map (x: { plugin = x; }) (with pkgs.vimPlugins; [
map (x: { plugin = x; }) (with pkgs.unstable.vimPlugins; [
vim-tmux-navigator # tmux
nnn-nvim # nnn as filebrowser
gruvbox-nvim # theme
@ -115,9 +115,7 @@ in
toggleterm-nvim # embed terminals (for lazygit,...)
# treesitter
(pkgs.unstable.vimPlugins.nvim-treesitter.withPlugins (
plugins: pkgs.tree-sitter.allGrammars
))
(nvim-treesitter.withAllGrammars)
]);
};
};