mirror of
https://github.com/zoriya/flake.git
synced 2025-12-06 06:36:19 +00:00
50 lines
1.4 KiB
Lua
50 lines
1.4 KiB
Lua
return {
|
|
{
|
|
"telescope.nvim",
|
|
load = vim.cmd.packadd,
|
|
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" },
|
|
},
|
|
},
|
|
})
|
|
|
|
telescope.load_extension("fzf")
|
|
end
|
|
},
|
|
}
|