19 lines
568 B
Lua
19 lines
568 B
Lua
|
local trouble = require "trouble.providers.telescope"
|
||
|
return {
|
||
|
defaults = {
|
||
|
layout_strategy = "flex",
|
||
|
mappings = {
|
||
|
i = { ["<c-t>"] = trouble.open_with_trouble },
|
||
|
n = { ["<c-t>"] = trouble.open_with_trouble },
|
||
|
},
|
||
|
winblend = vim.o.winblend,
|
||
|
},
|
||
|
extensions = {
|
||
|
fzf = {
|
||
|
fuzzy = true, -- false will only do exact matching
|
||
|
override_generic_sorter = true, -- override the generic sorter
|
||
|
override_file_sorter = true, -- override the file sorter
|
||
|
},
|
||
|
},
|
||
|
}
|