mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
48 lines
1.2 KiB
Lua
48 lines
1.2 KiB
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 = {}, -- list of language that will be disabled
|
|
},
|
|
autopairs = {
|
|
enable = true,
|
|
},
|
|
autotag = {
|
|
enable = true,
|
|
filetypes = {
|
|
"html",
|
|
"htmldjango",
|
|
"javascript",
|
|
"typescript",
|
|
"javascriptreact",
|
|
"typescriptreact",
|
|
"svelte",
|
|
"vue",
|
|
"tsx",
|
|
"jsx",
|
|
"rescript",
|
|
"xml",
|
|
"php",
|
|
"markdown",
|
|
"glimmer",
|
|
"handlebars",
|
|
"hbs",
|
|
},
|
|
},
|
|
indent = { enable = true, disable = { "yaml" } },
|
|
rainbox = {
|
|
enable = true,
|
|
-- disable = { "jsx", "cpp" }, list of languages you want to disable the plugin for
|
|
extended_mode = true, -- Also highlight non-bracket delimiters like html tags, boolean or table: lang -> boolean
|
|
max_file_lines = nil, -- Do not enable for files with more than n lines, int
|
|
-- colors = {}, -- table of hex strings
|
|
-- termcolors = {} -- table of colour name strings
|
|
},
|
|
})
|