telescope-vertical

This commit is contained in:
Alexander Kabolov 2025-02-03 11:42:39 +01:00
parent 2a0f534e0e
commit 746bbd1150
1 changed files with 5 additions and 1 deletions

View File

@ -298,6 +298,10 @@ require('lazy').setup({
-- }, -- },
-- }, -- },
-- pickers = {} -- pickers = {}
--
defaults = {
layout_strategy = 'vertical',
},
pickers = { pickers = {
buffers = { buffers = {
sort_lastused = true, sort_lastused = true,
@ -339,7 +343,7 @@ require('lazy').setup({
vim.keymap.set('n', '<leader>/', function() vim.keymap.set('n', '<leader>/', function()
-- You can pass additional configuration to Telescope to change the theme, layout, etc. -- You can pass additional configuration to Telescope to change the theme, layout, etc.
builtin.current_buffer_fuzzy_find(require('telescope.themes').get_dropdown { builtin.current_buffer_fuzzy_find(require('telescope.themes').get_dropdown {
winblend = 10, -- winblend = 10,
previewer = false, previewer = false,
}) })
end, { desc = '[/] Fuzzily search in current buffer' }) end, { desc = '[/] Fuzzily search in current buffer' })