-- See: https://github.com/nvim-telescope/telescope.nvim local telescope = require("telescope") telescope.setup(@telescopeSettings@) vim.keymap.set("n", "ff", "Telescope find_files hidden=true") vim.keymap.set("n", "fb", "Telescope buffers") vim.keymap.set("n", "fh", "Telescope help_tags") -- required telescope-live-grep-args-nvim plugin vim.keymap.set("n", "fg", function() telescope.extensions.live_grep_args.live_grep_args() end)