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