mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
20 lines
305 B
Nix
Executable file
20 lines
305 B
Nix
Executable file
{pkgs, ...}: {
|
|
# treesitter
|
|
enable = true;
|
|
addDefaultGrammars = true;
|
|
grammars = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
|
|
nix
|
|
lua
|
|
markdown
|
|
html
|
|
python
|
|
yaml
|
|
toml
|
|
just
|
|
];
|
|
fold = true;
|
|
highlight = {
|
|
enable = true;
|
|
};
|
|
indent.enable = true;
|
|
}
|