aboutsummaryrefslogtreecommitdiff
path: root/treesitter.lua
blob: 4cb6c638571f8ca28184715778731e86ff153e3a (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", "haskell" },
  highlight = { enable = true },
}