dotfiles/symlinks/config/nvim/plugin/telescope.lua

39 lines
1.1 KiB
Lua
Raw Normal View History

2021-03-04 07:12:31 +00:00
-------------------------------------------------------------------------------
-- - Telescope configuration -
-------------------------------------------------------------------------------
local actions = require("telescope.actions")
require("telescope").setup {
defaults = {
mappings = {
i = {
-- Switch out M-q and C-q since C-q will be used more often
["<M-q>"] = actions.send_to_qflist + actions.open_qflist,
["<C-q>"] = actions.send_selected_to_qflist + actions.open_qflist
},
n = {
-- Switch out M-q and C-q since C-q will be used more often
["<M-q>"] = actions.send_to_qflist + actions.open_qflist,
["<C-q>"] = actions.send_selected_to_qflist + actions.open_qflist
}
}
}
2021-03-04 07:12:31 +00:00
}
require("telescope").load_extension("dap")
2021-03-04 07:12:31 +00:00
2022-04-27 09:02:47 +00:00
vim.keymap.set(
"n",
"<C-P>",
function()
require("telescope.builtin").find_files()
end
)
vim.keymap.set(
"n",
"<C-M-F>",
function()
require("telescope.builtin").live_grep()
end
)