From 098be626df9407317bff4bea4e58719a2731ffb4 Mon Sep 17 00:00:00 2001 From: jc <46619361+juancwu@users.noreply.github.com> Date: Fri, 25 Aug 2023 21:31:36 -0400 Subject: [PATCH] more config for telescope --- .config/nvim/lua/plugins/telescope.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index 10c670a..32102f0 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -39,6 +39,8 @@ return { ['d'] = fb_actions.remove, [''] = function(bufnr) actions.select_vertical(bufnr) end, [''] = function(bufnr) actions.toggle_all(bufnr) end, + [''] = function(bufnr) actions.move_selection_next(bufnr) end, + [''] = function(bufnr) actions.move_selection_previous(bufnr) end, } } },