12 lines
462 B
Lua
12 lines
462 B
Lua
return {
|
|
"nvim-telescope/telescope.nvim",
|
|
tag = "0.1.8",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
lazy = false,
|
|
config = function()
|
|
require("telescope").setup({}) -- Define key mappings here to ensure they are set after the plugin is loaded
|
|
vim.api.nvim_set_keymap("n", "<leader><C-f>", "<Cmd>Telescope live_grep<CR>", { noremap = true, silent = true })
|
|
end,
|
|
keys = "<leader><C-f>", -- Optionally specify here to load the plugin on this keypress
|
|
}
|