This commit is contained in:
2026-02-17 20:56:53 +01:00
parent 6c7e442056
commit 4519c8bf89
23 changed files with 895 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
local builtin = require('telescope.builtin')
vim.keymap.set("n", "<leader>pf", builtin.find_files, {})
vim.keymap.set("n", "<C-p>", builtin.git_files, {})
vim.keymap.set("n", "<leader>ps", function()
builtin.grep_string({ search = vim.fn.input("Grep > ")});
end)