From ea67e76a891aa9bd62e8ca8e4f9280a8b72cff15 Mon Sep 17 00:00:00 2001 From: Seymur Bagirov Date: Mon, 1 Jul 2024 03:02:47 +0400 Subject: [PATCH] remove harpoon from telescope --- nvim/lua/themystery/plugins/telescope.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/nvim/lua/themystery/plugins/telescope.lua b/nvim/lua/themystery/plugins/telescope.lua index 80da04c..761b937 100644 --- a/nvim/lua/themystery/plugins/telescope.lua +++ b/nvim/lua/themystery/plugins/telescope.lua @@ -4,7 +4,6 @@ return { dependencies = { "nvim-lua/plenary.nvim", "nvim-telescope/telescope-ui-select.nvim", - "ThePrimeagen/harpoon", }, config = function() local builtin = require('telescope.builtin') @@ -59,7 +58,5 @@ return { } } require("telescope").load_extension("ui-select") - require("telescope").load_extension("harpoon") - vim.keymap.set("n", "pba", ":Telescope harpoon marks") end }