local builtin = require("telescope.builtin") vim.keymap.set("n", "pf", builtin.find_files, { desc = "Find files" }) vim.keymap.set("n", "", builtin.git_files, { desc = "Find git files" }) vim.keymap.set("n", "ps", function() builtin.grep_string({ search = vim.fn.input("Grep > ") }) end, { desc = "Find string" }) vim.keymap.set("n", "vh", builtin.help_tags, { desc = "Find help tags" })