dotfiles/nvim/lua/telescope_config.lua

24 lines
389 B
Lua
Raw Normal View History

2022-08-30 12:43:04 +02:00
require('telescope').load_extension('lsp_handlers')
require('telescope').setup({
2022-12-22 19:22:41 +01:00
defaults={
path_display={"smart"},
},
pickers={
find_files={
theme="dropdown",
layout_config={
horizontal= {width=0.5}
}
}
},
2022-08-30 12:43:04 +02:00
extensions = {
lsp_handlers = {
code_action = {
telescope = require('telescope.themes').get_dropdown({}),
},
},
},
})