2023-11-28 11:10:12 +08:00
|
|
|
local trouble = require("trouble.providers.telescope")
|
|
|
|
|
|
|
|
|
2022-05-03 14:36:01 +08:00
|
|
|
require('telescope').setup {
|
2023-11-30 10:08:56 +08:00
|
|
|
defaults = { layout_strategy = 'flex',
|
2023-11-30 12:55:27 +08:00
|
|
|
layout_config = { flex = { flip_columns = 144 } },
|
2023-11-28 11:10:12 +08:00
|
|
|
mappings = {
|
|
|
|
i = { ["<c-t>"] = trouble.open_with_trouble },
|
|
|
|
n = { ["<c-t>"] = trouble.open_with_trouble },
|
|
|
|
},
|
|
|
|
},
|
2022-05-03 14:36:01 +08:00
|
|
|
}
|