Bruno BELANYI
01d7ead121
IMHO, this is *very* colorful, I might not end up using the highlighting after all. Let's see if I get used to it after a little while.
14 lines
273 B
VimL
14 lines
273 B
VimL
lua << EOF
|
|
local ts_config = require("nvim-treesitter.configs")
|
|
ts_config.setup({
|
|
highlight = {
|
|
enable = true,
|
|
-- Avoid duplicate highlighting
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
})
|
|
EOF
|