Add telescope

This commit is contained in:
2024-12-25 19:14:39 +01:00
parent 24435d3b60
commit 1622e731e4
4 changed files with 64 additions and 3 deletions

View File

@@ -0,0 +1,49 @@
return {
{
"telescope.nvim",
cmd = "Telescope",
keys = {
{ "<leader>f", "<cmd>Telescope find_files<cr>", desc = "Find Files" },
{ "<leader>F", "<cmd>Telescope live_grep theme=ivy<cr>", desc = "Grep" },
{ "<leader>gl", "<cmd>Telescope git_commits<CR>", desc = "Git log" },
{ "<leader>gh", "<cmd>Telescope git_bcommits<CR>", desc = "Git history" },
{ "<leader>gB", "<cmd>Telescope git_branches<CR>", desc = "Git branches" },
{ "<leader>gs", "<cmd>Telescope git_status<CR>", desc = "Git status" },
{ "<leader>gc", "<cmd>Telescope git_show<CR>", desc = "Show last commit" },
{ "<leader>zh", "<cmd>Telescope help_tags<CR>", desc = "Read help" },
},
after = function()
local actions = require("telescope.actions")
local telescope = require("telescope")
telescope.setup({
defaults = {
prompt_prefix = "",
selection_caret = "",
sorting_strategy = "ascending",
layout_config = {
horizontal = {
prompt_position = "top",
}
},
mappings = {
i = {
["<esc>"] = actions.close,
["<C-c>"] = actions.close,
},
}
},
pickers = {
find_files = {
hidden = true,
-- remove .git directory
find_command = { "fd", "--type", "f", "--strip-cwd-prefix", "-E", ".git" },
},
},
})
vim.cmd.packadd("telescope-fzf-native.nvim")
telescope.load_extension("fzf")
end
},
}