21 lines
713 B
Lua
21 lines
713 B
Lua
local rainbow = require('ts-rainbow')
|
|
require 'nvim-treesitter.configs'.setup {
|
|
-- one of "all", "maintained" (parsers with maintainers), or a list of languages
|
|
ensure_installed = "all",
|
|
highlight = { enable = true },
|
|
incremental_selection = { enable = true },
|
|
textobjects = { enable = true },
|
|
indent = { enable = true },
|
|
|
|
-- enable rainbow brackets, needs p00f/nvim-ts-rainbow
|
|
rainbow = {
|
|
enable = true,
|
|
strategy = { rainbow.strategy.global }
|
|
},
|
|
|
|
-- for improved commentstrings, needs corresponding plugin
|
|
context_commentstring = {
|
|
enable = true,
|
|
enable_autocmd = false -- since we run it as a hook from the mini.comment plugin
|
|
}
|
|
}
|