config.nvim/lua/plugins/telescope.lua
Ryan b40ceec09d
feat(all): Update telescope plugin and mappings
Signed-off-by: Ryan <ryan@alien.gov>
2023-11-30 10:08:56 +08:00

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 },
},
},
}