This commit is contained in:
2025-12-26 11:02:58 +01:00
commit 83841223bb
15 changed files with 922 additions and 0 deletions

13
home/neovim/default.nix Normal file
View File

@@ -0,0 +1,13 @@
{...}:
{
imports = [
./treesitter.nix
];
programs.nixvim = {
enable = true;
defaultEditor = true;
};
}

View File

@@ -0,0 +1,5 @@
{
programs.nixvim.plugins.treesitter = {
enable = true;
};
}