diff options
author | 2025-05-07 17:41:38 +0300 | |
---|---|---|
committer | 2025-05-07 17:41:38 +0300 | |
commit | e0ab64b0f38781e7053bfae256f5a16d58e551a6 (patch) | |
tree | 194126ba11d6e2582d45b69c30d57c28bc221705 /lua/config/plugins | |
parent | feat: add `biome` as LSP client and formatter (diff) | |
download | neovim-configuration-e0ab64b0f38781e7053bfae256f5a16d58e551a6.tar.gz neovim-configuration-e0ab64b0f38781e7053bfae256f5a16d58e551a6.tar.bz2 neovim-configuration-e0ab64b0f38781e7053bfae256f5a16d58e551a6.tar.lz neovim-configuration-e0ab64b0f38781e7053bfae256f5a16d58e551a6.tar.xz neovim-configuration-e0ab64b0f38781e7053bfae256f5a16d58e551a6.tar.zst neovim-configuration-e0ab64b0f38781e7053bfae256f5a16d58e551a6.zip |
fix: `Tab` and `Shift-Tab` in fzf-lua
Diffstat (limited to 'lua/config/plugins')
-rw-r--r-- | lua/config/plugins/fuzzy.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lua/config/plugins/fuzzy.lua b/lua/config/plugins/fuzzy.lua index fb3cd60..9bab351 100644 --- a/lua/config/plugins/fuzzy.lua +++ b/lua/config/plugins/fuzzy.lua @@ -14,7 +14,14 @@ return { "fzf-lua", event = "DeferredUIEnter", after = function(_) - require("fzf-lua").setup() + require("fzf-lua").setup({ + keymap = { + fzf = { + ["tab"] = "down", + ["shift-tab"] = "up", + }, + }, + }) end, keys = { |