changed telescope path display

This commit is contained in:
marcinburzynski 2025-12-10 11:22:41 +01:00
parent 36efa20d69
commit fee1f7dd79
No known key found for this signature in database
GPG Key ID: 5BCFD85D87999C32
1 changed files with 13 additions and 3 deletions

View File

@ -78,9 +78,12 @@ vim.o.scrolloff = 10
-- See `:help 'confirm'` -- See `:help 'confirm'`
vim.o.confirm = true vim.o.confirm = true
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true vim.opt.expandtab = true
vim.opt.shiftwidth = 4
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.smartindent = true
vim.opt.autoindent = true
-- [[ Basic Keymaps ]] -- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()` -- See `:help vim.keymap.set()`
@ -331,6 +334,9 @@ require('lazy').setup({
-- }, -- },
-- }, -- },
-- pickers = {} -- pickers = {}
defaults = {
path_display = { 'smart' },
},
extensions = { extensions = {
['ui-select'] = { ['ui-select'] = {
require('telescope.themes').get_dropdown(), require('telescope.themes').get_dropdown(),
@ -747,7 +753,11 @@ require('lazy').setup({
-- end, -- end,
-- }, -- },
}, },
opts = {}, opts = {
history = true,
region_check_events = 'InsertEnter',
delete_check_events = 'TextChanged,InsertLeave',
},
}, },
'folke/lazydev.nvim', 'folke/lazydev.nvim',
}, },