aboutsummaryrefslogtreecommitdiff
path: root/treesitter.lua
blob: 6361af1c3f5ef42fc7bdf9e4c492f94887047aa8 (plain)
1
2
3
4
5
6
7
8
9
10
-- syntax highlighting via treesitter
--
-- use :TSInstall <lang> to install languages
--
-- go, scala, c & cpp, python, comment, ...
--
require'nvim-treesitter.configs'.setup {
  highlight = { enable = true },
  rainbow = { enable = true },
}