diff --git a/lua/keybinds.lua b/lua/keybinds.lua index 5e1daee..78e75f2 100644 --- a/lua/keybinds.lua +++ b/lua/keybinds.lua @@ -104,8 +104,7 @@ function KEYBINDS:set_telescope_keys(opts) vim.keymap.set('n', '', telescope.find_files, opts) -- fallback for windows vim.keymap.set('n', '', wrap(telescope.live_grep, {layout_strategy = 'vertical'}), opts) vim.keymap.set('n', '', wrap(telescope.live_grep, {layout_strategy = 'vertical'}), opts) -- fallback for windows - vim.keymap.set('n', '', wrap(telescope.lsp_references, theme.get_cursor()), opts) - vim.keymap.set('n', '', wrap(telescope.lsp_references, theme.get_cursor()), opts) -- fallback for windows + vim.keymap.set('n', '', wrap(telescope.lsp_references, theme.get_cursor()), opts) vim.keymap.set('n', '', telescope.git_bcommits, opts) vim.keymap.set('n', '', telescope.git_bcommits, opts) -- fallback for windows vim.keymap.set('n', '', wrap(telescope.registers, theme.get_dropdown()), opts) -- fallback for windows diff --git a/lua/plugins.lua b/lua/plugins.lua index 05d0c9a..1ea7f5a 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -127,13 +127,15 @@ local init_fn = function(use) layout_config = { horizontal = { preview_width = 0.65, - results_width = 0.7, + results_width = 0.35, }, vertical = { mirror = false, }, - height = 0.9, - width = 0.9 + cursor = { + preview_width = 0.6, + results_width = 0.4, + } }, } })