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