From 24662b79e5cf08458537bc6e14611ed1d77fba24 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Thu, 8 Feb 2024 08:35:58 +0000 Subject: [PATCH] feat: better keybinds for telescope --- lua/core/keybinds.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/core/keybinds.lua b/lua/core/keybinds.lua index baa12ca..7fa67ca 100644 --- a/lua/core/keybinds.lua +++ b/lua/core/keybinds.lua @@ -3,8 +3,9 @@ local wk = require("which-key") wk.register({ f = { name = "file", - f = { "Telescope find_files", "Find File" }, - a = { "Telescope find_files hidden=true", "Find Hidden" }, + f = { "Telescope find_files search_dirs=~", "Find File (~)" }, + a = { "Telescope find_files hidden=true search_dirs=~", "Find Hidden (~)" }, + p = { "Telescope find_files hidden=true", "Find File" }, g = { "Telescope live_grep", "Find Word" }, s = { ":w", "Write" }, w = { ":w!", "Force Write" },