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-28 11:10:12 +08:00
|
|
|
defaults = { layout_strategy = 'vertical',
|
|
|
|
layout_config = { height = 0.95 },
|
|
|
|
mappings = {
|
|
|
|
i = { ["<c-t>"] = trouble.open_with_trouble },
|
|
|
|
n = { ["<c-t>"] = trouble.open_with_trouble },
|
|
|
|
},
|
|
|
|
},
|
2022-05-03 14:36:01 +08:00
|
|
|
}
|