1
0
Fork 0
linux-conf/configs/nvim/lua/plugins/nvim-treesitter.lua

16 lines
413 B
Lua
Raw Normal View History

2021-06-23 22:51:18 +02:00
local function init()
require'nvim-treesitter.configs'.setup {
ensure_installed = "maintained", -- list of languages
highlight = {
enable = true,
},
rainbow = {
enable = true,
extended_mode = true, -- Highlight also non-parentheses delimiters, boolean or table: lang -> boolean
}
}
end
return {
init = init
}