mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-14 21:41:13 +00:00
18 lines
494 B
Lua
18 lines
494 B
Lua
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
configs.setup({
|
|
ensure_installed = "all", -- one of "all" or a list of languages
|
|
ignore_install = { "" }, -- List of parsers to ignore installing
|
|
highlight = {
|
|
enable = true, -- false will disable the whole extension
|
|
disable = { "css" }, -- list of language that will be disabled
|
|
},
|
|
autopairs = {
|
|
enable = true,
|
|
},
|
|
indent = { enable = true, disable = { "python", "css" } },
|
|
})
|