From a8ea70cb0592f207f22dfb9e3beb2603adbd9ebf Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Sat, 15 Jul 2023 01:40:37 +0530 Subject: nvim: Adding catpuccin theme and telescope nvim --- .config/nvim/lua/justsaumit/which-key-config.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.config/nvim/lua/justsaumit/which-key-config.lua') diff --git a/.config/nvim/lua/justsaumit/which-key-config.lua b/.config/nvim/lua/justsaumit/which-key-config.lua index b438f7e..25ec150 100644 --- a/.config/nvim/lua/justsaumit/which-key-config.lua +++ b/.config/nvim/lua/justsaumit/which-key-config.lua @@ -4,8 +4,10 @@ local mappings = { Z = {":wq", "Save and Quit"}, w = {":w", "Save"}, x ={":bdelete", "Close"}, - f = { ":Telescope find_files", "Telescope Find Files" }, - g = { ":Telescope live_grep", "Telescope Live Grep" } + f = { ":Telescope find_files", "Telescope Find Files" }, + h = { ":Telescope find_files hidden=true", "Telescope Find Files" }, + g = { ":Telescope live_grep", "Telescope Live Grep" }, + r = { ":Telescope oldfiles", "Recent files" } } local opts = {prefix = ''} wk.register(mappings, opts) -- cgit v1.2.3