diff options
| author | 2025-05-08 13:33:57 +0300 | |
|---|---|---|
| committer | 2025-05-08 13:33:57 +0300 | |
| commit | faf94d94e7bf7258efe122bef26baca7db011b43 (patch) | |
| tree | fcefce92ef5f47f5cfa4e9f18f2c3920a13eb1e6 /lua/config/plugins/extra.lua | |
| parent | fix: `oil.nvim` not loading at start (diff) | |
| download | neovim-configuration-faf94d94e7bf7258efe122bef26baca7db011b43.tar.gz neovim-configuration-faf94d94e7bf7258efe122bef26baca7db011b43.tar.bz2 neovim-configuration-faf94d94e7bf7258efe122bef26baca7db011b43.tar.lz neovim-configuration-faf94d94e7bf7258efe122bef26baca7db011b43.tar.xz neovim-configuration-faf94d94e7bf7258efe122bef26baca7db011b43.tar.zst neovim-configuration-faf94d94e7bf7258efe122bef26baca7db011b43.zip | |
feat: map `<leader>w` to `<C-w>`
Diffstat (limited to 'lua/config/plugins/extra.lua')
| -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" }, { |
