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