add some basic plugins and keymap

This commit is contained in:
2025-11-15 12:14:03 -05:00
parent 2c2804273c
commit 5f6a4907f3
16 changed files with 183 additions and 26 deletions

View File

@@ -0,0 +1,33 @@
-- treesitter
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
-- treesitter config
local config = require("nvim-treesitter.configs")
config.setup({
ignore_install = {},
ensure_installed = {
"vimdoc",
"go",
"rust",
"c",
"lua",
"python",
"html",
"css",
"javascript",
"typescript",
"sql",
"markdown",
},
highlight = {
enable = true,
},
indent = { enable = true },
modules = {},
sync_install = true,
auto_install = true,
})
end
}