file path issue fixed
This commit is contained in:
parent
90188356df
commit
63fe72a39c
21
init.lua
21
init.lua
|
@ -384,21 +384,20 @@ require('lazy').setup({
|
|||
-- [[ Configure Telescope ]]
|
||||
-- See `:help telescope` and `:help telescope.setup()`
|
||||
require('telescope').setup {
|
||||
-- You can put your default mappings / updates / etc. in here
|
||||
-- All the info you're looking for is in `:help telescope.setup()`
|
||||
--
|
||||
-- defaults = {
|
||||
-- mappings = {
|
||||
-- i = { ['<c-enter>'] = 'to_fuzzy_refine' },
|
||||
-- },
|
||||
-- },
|
||||
-- pickers = {}
|
||||
defaults = {
|
||||
preview = {
|
||||
hide_on_startup = false,
|
||||
},
|
||||
previewer = true,
|
||||
file_ignore_patterns = {},
|
||||
path_display = { "truncate" },
|
||||
},
|
||||
extensions = {
|
||||
['ui-select'] = {
|
||||
require('telescope.themes').get_dropdown(),
|
||||
},
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
-- Enable Telescope extensions if they are installed
|
||||
pcall(require('telescope').load_extension, 'fzf')
|
||||
|
|
Loading…
Reference in New Issue