13 lines
275 B
Nix
13 lines
275 B
Nix
{ pkgs, ... }: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
defaultEditor = true;
|
|
plugins = with pkgs.vimPlugins; [
|
|
nvim-tree-lua
|
|
nvim-treesitter.withAllGrammars
|
|
];
|
|
};
|
|
}
|