Ivan Polyakov
2 years ago
5 changed files with 108 additions and 45 deletions
@ -0,0 +1,25 @@ |
|||||||
|
local ok, configs = pcall(require, "nvim-treesitter.configs") |
||||||
|
if not ok then |
||||||
|
return |
||||||
|
end |
||||||
|
|
||||||
|
configs.setup { |
||||||
|
ensure_installed = { |
||||||
|
"c", "cpp", "lua", "scheme", "vue", "javascript", "pug" |
||||||
|
}, |
||||||
|
sync_install = false, |
||||||
|
ignore_install = { "" }, |
||||||
|
autopairs = { |
||||||
|
enable = true, |
||||||
|
}, |
||||||
|
highlight = { |
||||||
|
enable = true, |
||||||
|
disable = { "" }, |
||||||
|
additional_vim_regex_highlighting = true, |
||||||
|
}, |
||||||
|
indent = { enable = true, disable = { "yaml" } }, |
||||||
|
context_commentstring = { |
||||||
|
enable = true, |
||||||
|
enable_autocmd = false, |
||||||
|
}, |
||||||
|
} |
Loading…
Reference in new issue