add which-key

This commit is contained in:
2025-05-12 23:41:48 +02:00
parent bf0056358b
commit 90beed3354
11 changed files with 121 additions and 126 deletions

View File

@@ -1,15 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
}