Changed: Neovim

This commit is contained in:
2025-04-10 11:33:28 +02:00
parent f9aba98533
commit 4bb72ea758
23 changed files with 440 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, ... }: {
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
defaultEditor = true;
/*plugins = with pkgs.vimPlugins; [
nvim-tree-lua
nvim-treesitter.withAllGrammars
];*/
};
home.file.".config/nvim" = {
source = ./configs;
recursive = true;
};
}