mirror of
https://github.com/danielepintore/dotfiles.git
synced 2026-07-07 06:15:13 +02:00
feat: update nvim config to match 0.12 version
This commit is contained in:
25
.config/nvim/lua/plugins/tree-sitter.lua
Normal file
25
.config/nvim/lua/plugins/tree-sitter.lua
Normal file
@@ -0,0 +1,25 @@
|
||||
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
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user