refesh directory tree

This commit is contained in:
2024-10-31 11:33:13 +01:00
parent 5b69c9bdc3
commit ee6b74e5bd
410 changed files with 3793 additions and 5033 deletions

View File

@@ -0,0 +1,25 @@
return {
-- Modify which-key keys
{
"folke/which-key.nvim",
opts = function()
require("which-key").register({
["<leader>t"] = {
name = "+test",
},
["<leader>gb"] = {
name = "+blame",
},
["<leader>gd"] = {
name = "+diffview",
},
["<leader>h"] = {
name = "+harpoon",
},
["<leader>r"] = {
name = "+run",
},
})
end,
},
}