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

13 lines
190 B
Lua
Raw Normal View History

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