mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 11:02:20 +00:00
changes
This commit is contained in:
parent
84b67f3c7b
commit
2cfd4358fb
3 changed files with 7 additions and 1 deletions
|
|
@ -5,6 +5,11 @@ return {
|
|||
cmd = "Telescope",
|
||||
keys = {
|
||||
{ "<leader>ff", "<cmd>Telescope find_files<cr>", desc = "Find files" },
|
||||
{ "<leader>fs", function()
|
||||
require("telescope.builtin").find_files({
|
||||
find_command = { "fd", "--type", "f", "--max-depth", "3", "--strip-cwd-prefix", "--hidden", "--exclude", ".git", "--exclude", "node_modules", "--exclude", ".next" }
|
||||
})
|
||||
end, desc = "Shallow find files" },
|
||||
{ "<leader>fg", "<cmd>Telescope live_grep<cr>", desc = "Live grep" },
|
||||
{ "<leader>fb", "<cmd>Telescope buffers<cr>", desc = "Buffers" },
|
||||
{ "<leader>fh", "<cmd>Telescope help_tags<cr>", desc = "Help tags" },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue