blob: 6bc8fbb5b9a43b4a08d16d6a4da328bd35b493de (
plain)
1
2
3
4
5
6
7
8
9
|
require'nvim-treesitter.configs'.setup {
-- Automatically install missing parsers when entering buffer
-- False because we install them via Nix.
auto_install = false,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}
|