mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2025-01-06 09:59:09 +00:00
17 lines
633 B
Lua
17 lines
633 B
Lua
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
configs.setup({
|
|
ensure_installed = { "bash", "c", "javascript", "json", "lua", "python", "typescript", "tsx", "css", "rust", "java", "yaml", "markdown", "markdown_inline" }, -- one of "all" or a list of languages
|
|
ignore_install = { "phpdoc" }, -- 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" } },
|
|
})
|