nix/home/config/nvim/module/plugin/Treesitter.nix

27 lines
549 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
require("nvim-treesitter.configs").setup {
parser_install_dir = "~/.cache/nvim/treesitter",
auto_install = true,
-- ensure_installed = "all",
sync_install = false,
highlight = {
additional_vim_regex_highlighting = false,
enable = true,
use_languagetree = true,
disable = { "lua" },
},
indent = {
enable = true,
},
autotag = {
enable = true
},
rainbow = {
enable = true
},
}
'';
2024-04-06 03:03:58 +03:00
}