diff options
author | Squibid <me@zacharyscheiman.com> | 2024-12-22 14:03:14 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-12-22 14:03:14 -0500 |
commit | b8d0882881d3b407cd626ec6f48051875b91049c (patch) | |
tree | 5d22e72820b78443ff301118d87792a2c7c2e000 /lua | |
parent | 5e6a7a82627d9b368c8a95039ddb4a4e305e0457 (diff) | |
download | nvim-b8d0882881d3b407cd626ec6f48051875b91049c.tar.gz nvim-b8d0882881d3b407cd626ec6f48051875b91049c.tar.bz2 nvim-b8d0882881d3b407cd626ec6f48051875b91049c.zip |
stop harpoon keybind from conflicting with my tmux prefix
Diffstat (limited to '')
-rw-r--r-- | lua/conf/plugins/harpoon.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conf/plugins/harpoon.lua b/lua/conf/plugins/harpoon.lua index bd86fa0..9cca238 100644 --- a/lua/conf/plugins/harpoon.lua +++ b/lua/conf/plugins/harpoon.lua @@ -23,7 +23,7 @@ return { 'ThePrimeagen/harpoon', map("n", "<C-h>", function() harpoon:list():select(1) end) map("n", "<C-t>", function() harpoon:list():select(2) end) map("n", "<C-n>", function() harpoon:list():select(3) end) - map("n", "<C-s>", function() harpoon:list():select(4) end) + map("n", "<C-c>", function() harpoon:list():select(4) end) -- Toggle previous & next buffers stored within Harpoon list map("n", "<C-S-P>", function() harpoon:list():prev() end) |