mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
16 lines
256 B
Nix
Executable file
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;
|
|
}
|