aboutsummaryrefslogtreecommitdiff
path: root/treesitter.lua
blob: 7f772aab6d3ed8d041f070f63d4dd1e350e011e9 (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 },
  indent = { enable = true },
}