aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-01-18 15:43:21 -0600
committerToby Vincent <tobyv@tobyvin.dev>2024-01-18 15:43:21 -0600
commitc2e450ad9fce1a7ec4ee31a1921ab9c297030d67 (patch)
treea0a1e6ac15e7114dca7eb587861165b88caf44f9 /nvim
parent965fb526ad3e253a37b46182234ba33c6648a4ea (diff)
fix(nvim): conflicting keymap in telescope
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/plugins/telescope.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/.config/nvim/lua/plugins/telescope.lua b/nvim/.config/nvim/lua/plugins/telescope.lua
index ec9bbbd..f9144fc 100644
--- a/nvim/.config/nvim/lua/plugins/telescope.lua
+++ b/nvim/.config/nvim/lua/plugins/telescope.lua
@@ -60,7 +60,7 @@ local M = {
sort_lastused = true,
mappings = {
i = {
- ["<C-d>"] = "delete_buffer",
+ ["<C-x>"] = "delete_buffer",
},
},
},