2023-07-15 17:07:55 +00:00
|
|
|
{ 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
|
|
|
|
];
|
2023-07-15 18:55:50 +00:00
|
|
|
defaultEditor = true;
|
2023-07-15 17:07:55 +00:00
|
|
|
};
|
|
|
|
}
|