add telescope ui select
This commit is contained in:
parent
f0388ec5e0
commit
550b6f1f90
@ -1,6 +1,9 @@
|
|||||||
local M = {
|
local M = {
|
||||||
'williamboman/mason.nvim',
|
'williamboman/mason.nvim',
|
||||||
cmd = 'Mason',
|
cmd = 'Mason',
|
||||||
|
dependencies = {
|
||||||
|
'nvim-telescope/telescope.nvim',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- M.tools = {
|
-- M.tools = {
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
local M = {
|
local M = {
|
||||||
'nvim-telescope/telescope.nvim',
|
'nvim-telescope/telescope.nvim',
|
||||||
cmd = { 'Telescope' },
|
cmd = { 'Telescope' },
|
||||||
|
dependencies = {
|
||||||
|
'nvim-telescope/telescope-ui-select.nvim',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
function M.config()
|
function M.config()
|
||||||
@ -43,6 +46,11 @@ function M.config()
|
|||||||
|
|
||||||
-- local fb_actions = require "telescope".extensions.file_browser.actions
|
-- local fb_actions = require "telescope".extensions.file_browser.actions
|
||||||
telescope.setup {
|
telescope.setup {
|
||||||
|
extensions = {
|
||||||
|
['ui-select'] = {
|
||||||
|
require('telescope.themes').get_dropdown {},
|
||||||
|
},
|
||||||
|
},
|
||||||
pickers = {
|
pickers = {
|
||||||
find_files = {
|
find_files = {
|
||||||
find_command = { 'fd', '--type', 'f', '--strip-cwd-prefix' },
|
find_command = { 'fd', '--type', 'f', '--strip-cwd-prefix' },
|
||||||
@ -87,6 +95,7 @@ function M.config()
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
require('telescope').load_extension 'ui-select'
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
Loading…
Reference in New Issue
Block a user