14 lines
365 B
VimL
14 lines
365 B
VimL
lua << EOF
|
|
local actions = require("telescope.actions")
|
|
local trouble = require("trouble.providers.telescope")
|
|
require('telescope').setup {
|
|
defaults = {
|
|
mappings = {
|
|
i = { ["<c-t>"] = trouble.open_with_trouble },
|
|
n = { ["<c-t>"] = trouble.open_with_trouble },
|
|
},
|
|
},
|
|
}
|
|
|
|
require('telescope').load_extension('fzf')
|
|
EOF
|