Added terminal toggler

This commit is contained in:
2024-08-17 15:02:08 +04:00
parent 59131c8aac
commit b8eac70b3d
5 changed files with 29 additions and 4 deletions

View File

@@ -4,8 +4,8 @@ return {
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
require("telescope").setup({})
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
keys = "<leader><C-f>",
}