nix-darwin/home/nvf/lsp/treesitter.nix
Poby 63a3bb6e98
feat: sops-nix configuration
encrypt personal ssh key for git
2026-03-15 02:50:19 +09:00

16 lines
256 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;
}