This commit is contained in:
2023-01-20 10:54:22 +01:00
parent 77036d0584
commit 7a65e3fb59
18 changed files with 123 additions and 164 deletions

13
which-key/register.lua Normal file
View File

@@ -0,0 +1,13 @@
return {
-- first key is the mode, n == normal mode
n = {
-- second key is the prefix, <leader> prefixes
["<leader>"] = {
-- third key is the key to bring up next level and its displayed
-- group name in which-key top level menu
["b"] = { name = "Buffer" },
["P"] = { "<cmd>Telescope projects<cr>", "projects" },
["."] = { "<cmd>Ranger<cr>", "ranger" },
},
},
}