1
0
Fork 0

Migrate to lua

This commit is contained in:
Florian RICHER 2021-06-23 22:51:18 +02:00
parent 52e2648a79
commit 222f2c316b
15 changed files with 291 additions and 321 deletions

View file

@ -0,0 +1,16 @@
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
}