merge treesitter into app.nix

I'm uncertain if I moved the plugins over (I think they are all enabled
by default)
This commit is contained in:
Julia Lange 2026-02-18 14:00:28 -08:00
parent 849cc08db4
commit f3aad89088
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
2 changed files with 6 additions and 41 deletions

View file

@ -28,8 +28,6 @@
};
};
# ./plugin/treesitter.nix
config = lib.mkIf config.neovim.enable {
home.sessionVariables = {
EDITOR = "nvim";
@ -136,7 +134,12 @@
};
};
treesitter.enable = treesiter.enable;
treesitter = {
enable = treesiter.enable;
highlight.enable = true;
indent.enable = true;
folding.enable = true;
};
vimwiki = {
enable = wiki.enable;