Changed: Neovim Conff

This commit is contained in:
2025-03-26 14:36:56 +01:00
parent 40e8e8ff65
commit 4a21ce48d0
2 changed files with 13 additions and 1 deletions

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

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