nix-darwin/home/nvf/lsp/treesitter.nix
Poby fed3a5226a
feat: add python 3.13 as mise global
format with alejandra
2026-03-15 02:50:29 +09:00

15 lines
254 B
Nix
Executable file

{pkgs, ...}: {
# treesitter
enable = true;
addDefaultGrammars = true;
grammars = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
nix
lua
yaml
];
fold = true;
highlight = {
enable = true;
};
indent.enable = true;
}