file path issue fixed

This commit is contained in:
aryat 2025-06-07 21:17:48 +05:30
parent 90188356df
commit 63fe72a39c
1 changed files with 10 additions and 11 deletions

View File

@ -384,21 +384,20 @@ require('lazy').setup({
-- [[ Configure Telescope ]] -- [[ Configure Telescope ]]
-- See `:help telescope` and `:help telescope.setup()` -- See `:help telescope` and `:help telescope.setup()`
require('telescope').setup { require('telescope').setup {
-- You can put your default mappings / updates / etc. in here defaults = {
-- All the info you're looking for is in `:help telescope.setup()` preview = {
-- hide_on_startup = false,
-- defaults = { },
-- mappings = { previewer = true,
-- i = { ['<c-enter>'] = 'to_fuzzy_refine' }, file_ignore_patterns = {},
-- }, path_display = { "truncate" },
-- }, },
-- pickers = {}
extensions = { extensions = {
['ui-select'] = { ['ui-select'] = {
require('telescope.themes').get_dropdown(), require('telescope.themes').get_dropdown(),
}, },
}, },
} }
-- Enable Telescope extensions if they are installed -- Enable Telescope extensions if they are installed
pcall(require('telescope').load_extension, 'fzf') pcall(require('telescope').load_extension, 'fzf')