aboutsummaryrefslogtreecommitdiff
path: root/treesitter.lua
blob: d9bcbec25b62a2de00ba709fe36fb427809b2cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- syntax highlighting via treesitter
--
-- use :TSInstall <lang> to install languages
--
-- go, scala, c & cpp, python, comment, ...
--
require'nvim-treesitter.configs'.setup {
  highlight = {
    enable = true,
    -- Setting this to true will run `:h syntax` and tree-sitter at the same time.
    -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
    -- Using this option may slow down your editor, and you may see some duplicate highlights.
    -- Instead of true it can also be a list of languages
    additional_vim_regex_highlighting = false,
  },
}