4372d8a2b0
Signed-off-by: Ryan <ryan@alien.gov>
13 lines
305 B
Lua
13 lines
305 B
Lua
local trouble = require("trouble.providers.telescope")
|
|
|
|
|
|
require('telescope').setup {
|
|
defaults = { layout_strategy = 'flex',
|
|
layout_config = { flex = { flip_columns = 144 } },
|
|
mappings = {
|
|
i = { ["<c-t>"] = trouble.open_with_trouble },
|
|
n = { ["<c-t>"] = trouble.open_with_trouble },
|
|
},
|
|
},
|
|
}
|