First commit

This commit is contained in:
2024-08-14 03:43:41 +04:00
commit 746fa4ff35
15 changed files with 241 additions and 0 deletions

10
lua/plugins/telescope.lua Normal file
View File

@@ -0,0 +1,10 @@
return {
"nvim-telescope/telescope.nvim",
tag = "0.1.8",
dependencies = { "nvim-lua/plenary.nvim" },
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
}