Changed: Neovim Conf

This commit is contained in:
2025-03-26 14:00:20 +01:00
parent 04e98c48d1
commit 0331d55c34
3 changed files with 19 additions and 27 deletions

19
home/programs/neovim.nix Normal file
View File

@@ -0,0 +1,19 @@
{
pkgs,
config,
...
}: {
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
plugins = with pkgs.vimPlugins; [
nvim-tree-lua
nvim-treesitter
nvim-treesitter.withAllGrammars
];
};
}