From 03e3ce1f774219c9b74182b336d4cdb0deb5ecc2 Mon Sep 17 00:00:00 2001 From: AYM1607 Date: Thu, 29 Jul 2021 15:25:03 -0500 Subject: [PATCH] Add telescope file browser keybinding. --- lua/keymappings.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/keymappings.lua b/lua/keymappings.lua index 1364559..a47894d 100644 --- a/lua/keymappings.lua +++ b/lua/keymappings.lua @@ -25,6 +25,8 @@ vim.api.nvim_set_keymap('n', '', '', {noremap = true, silen -- Find files inside the current folder. vim.api.nvim_set_keymap('n', 'ff', 'Telescope find_files',{}) +-- Find files and folders allowing creation. +vim.api.nvim_set_keymap('n', 'fb', 'Telescope file_browser',{}) -- Do a grep search in the current folder. vim.api.nvim_set_keymap('n', 'ps', 'Telescope live_grep',{}) -- Search among the currently open buffers.