From 82df3ed13e01d680bd92a6037f2ec973c1382d74 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sat, 28 Jan 2023 23:37:13 +0100 Subject: [PATCH] nvim: remove 'cursor' layout from cycle in Telescope --- config/nvim/after/plugin/telescope.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/nvim/after/plugin/telescope.lua b/config/nvim/after/plugin/telescope.lua index 0285ee9..08819c5 100644 --- a/config/nvim/after/plugin/telescope.lua +++ b/config/nvim/after/plugin/telescope.lua @@ -37,8 +37,7 @@ telescope.setup { }, cycle_layout_list = { - { layout_strategy = 'cursor', layout_config = { width = 0.5, height = 0.4 }, }, - { layout_strategy = 'bottom_pane', layout_config = { width = 0.9, height = 0.4 }, }, + { layout_strategy = 'bottom_pane', layout_config = { width = 1, height = 0.4 }, }, 'horizontal', 'vertical', },