telescope
This commit is contained in:
parent
31bff1d28f
commit
cf7e6e2aea
@ -1,21 +1,42 @@
|
|||||||
require('telescope').load_extension('lsp_handlers')
|
require('telescope').load_extension('lsp_handlers')
|
||||||
local trouble = require('trouble.providers.telescope')
|
local trouble = require('trouble.providers.telescope')
|
||||||
require('telescope').setup({
|
require('telescope').setup({
|
||||||
defaults={
|
defaults = {
|
||||||
mappings={
|
mappings = {
|
||||||
i = { ["<c-t>"] = trouble.open_with_trouble },
|
i = { ["<c-t>"] = trouble.open_with_trouble },
|
||||||
n = { ["<c-t>"] = trouble.open_with_trouble },
|
n = { ["<c-t>"] = trouble.open_with_trouble },
|
||||||
},
|
},
|
||||||
path_display={"smart"},
|
path_display = { "smart" },
|
||||||
},
|
},
|
||||||
pickers={
|
pickers = {
|
||||||
find_files={
|
live_grep = {
|
||||||
theme="dropdown",
|
results_title = false,
|
||||||
layout_config={
|
layout_strategy = 'vertical',
|
||||||
horizontal= {width=0.5}
|
dynamic_preview_title = true,
|
||||||
|
sorting_strategy = 'ascending',
|
||||||
|
additional_args = { '--trim' },
|
||||||
|
layout_config = {
|
||||||
|
prompt_position = 'top',
|
||||||
|
width = 0.95,
|
||||||
|
height = 0.95,
|
||||||
|
mirror = true,
|
||||||
|
--flex = {
|
||||||
|
-- flip_columns = 100,
|
||||||
|
-- flip_lines = 10,
|
||||||
|
-- vertical = {
|
||||||
|
-- mirror = false,
|
||||||
|
-- },
|
||||||
|
-- horizontal = {
|
||||||
|
-- mirror = false
|
||||||
|
-- },
|
||||||
|
--},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
find_files = {
|
||||||
|
theme = "dropdown",
|
||||||
|
layout_config = {
|
||||||
|
horizontal = { width = 0.5 }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
extensions = {
|
extensions = {
|
||||||
|
Loading…
Reference in New Issue
Block a user