blob: 39f87e45209f706f3b209ead440030278c9523f1 (
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 {
ensure_installed = { "scala", "c", "cpp", "python", "comment" },
highlight = { enable = true },
}
|