Files
dotfiles/.config/nvim/lua/plugins/tree-sitter.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
},
}