dotfiles/home/.config/nvim/lua/pluginconf/treesitter.lua

7 lines
187 B
Lua
Raw Normal View History

2021-01-30 16:17:39 +02:00
require'nvim-treesitter.configs'.setup {
2021-01-30 16:46:41 +02:00
ensure_installed = 'maintained',
highlight = {enable = true},
indent = {enable = true},
incremental_selection = {enable = true}
2021-01-30 16:17:39 +02:00
}