diff options
feat: map `<leader>w` to `<C-w>`
Diffstat (limited to '')
| -rw-r--r-- | lua/config/plugins/extra.lua | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/lua/config/plugins/extra.lua b/lua/config/plugins/extra.lua index 2b1d8ef..2f7bf9c 100644 --- a/lua/config/plugins/extra.lua +++ b/lua/config/plugins/extra.lua @@ -91,6 +91,15 @@ return {  			require("which-key").setup()  			require("which-key").add({ +				{ +					"<leader>w", +					group = "windows", +					proxy = "<C-w>", +					expand = function() +						return require("which-key.extras").expand.win() +					end, +				}, +  				{ "<leader>s", group = "search" },  				{ | 
