mirror of
https://github.com/danielepintore/dotfiles.git
synced 2026-06-30 02:55:14 +02:00
26 lines
877 B
Lua
26 lines
877 B
Lua
return {
|
|
"romus204/tree-sitter-manager.nvim",
|
|
dependencies = {}, -- tree-sitter CLI must be installed system-wide
|
|
opts = {
|
|
ensure_installed = {
|
|
"bash",
|
|
"c",
|
|
"cpp",
|
|
"css",
|
|
"go",
|
|
"html",
|
|
"javascript",
|
|
"json",
|
|
"lua",
|
|
"python",
|
|
"rust",
|
|
"typescript",
|
|
"yaml"
|
|
}, -- list of parsers to install at the start of a neovim session
|
|
-- Default Options
|
|
-- ensure_installed = {}, -- list of parsers to install at the start of a neovim session
|
|
-- border = nil, -- border style for the window (e.g. "rounded", "single"), if nil, use the default border style defined by 'vim.o.winborder'. See :h 'winborder' for more info.
|
|
-- auto_install = false, -- if enabled, install missing parsers when editing a new file
|
|
},
|
|
}
|