16 lines
271 B
Nix
16 lines
271 B
Nix
|
{ pkgs, ... }: {
|
||
|
programs.neovim = {
|
||
|
enable = true ;
|
||
|
viAlias = true;
|
||
|
vimAlias = true;
|
||
|
vimdiffAlias = true;
|
||
|
plugins = with pkgs.vimPlugins;[
|
||
|
nvim-lspconfig
|
||
|
nvim-treesitter.withAllGrammars
|
||
|
plenary-nvim
|
||
|
gruvbox-material
|
||
|
mini-nvim
|
||
|
];
|
||
|
};
|
||
|
}
|