From 831cdc8210ccc102adb23bf730d70d1504e6e1b5 Mon Sep 17 00:00:00 2001 From: Samuel O'Neal Date: Tue, 19 May 2026 22:28:37 -0600 Subject: [PATCH] Switched to using leader instead of Ctrl+Shift --- lua/config/keymaps.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua index 56a5a06..b6e02c4 100644 --- a/lua/config/keymaps.lua +++ b/lua/config/keymaps.lua @@ -21,10 +21,7 @@ map("t", "", "", { desc = "Exit terminal mode" }) -- ───────────────────────────────────────────────────────────────────────────── -- Explorer (Snacks) -- ───────────────────────────────────────────────────────────────────────────── --- Using Ctrl-Shift-e here matches the README. Note: some terminals --- (Terminal.app, basic xterm) don't transmit Ctrl+Shift+letter distinctly — --- if it doesn't fire, use LazyVim's e / fe instead. -map({ "n", "i" }, "", function() +map({ "n", "i" }, "e", function() Snacks.explorer() end, { desc = "Toggle Explorer" })