dotfiles/nvim/.config/nvim/lua/treesitter.lua
Sanchayan Maity af410754a4 nvim: Add nvim-treesitter
Drop the syntax highlight plugins for the languages for which treesitter
is now enabled.

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
2020-09-11 20:21:35 +05:30

7 lines
135 B
Lua

require'nvim-treesitter.configs'.setup {
ensure_installed = { "c", "cpp", "lua", "rust" },
highlight = {
enable = true,
},
}