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 ]]
|
-- [[ 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')
|
||||||
|
|
Loading…
Reference in New Issue