add harpoon plugin

This commit is contained in:
Schistos Tega 2024-06-02 20:36:08 +03:00
parent b15c51b398
commit 7c53ce5bef
2 changed files with 23 additions and 0 deletions

View file

@ -326,6 +326,7 @@ require('lazy').setup({
-- Useful for getting pretty icons, but requires a Nerd Font.
{ 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font },
{ 'ThePrimeagen/harpoon' },
},
config = function()
-- Telescope is a fuzzy finder that comes with a lot of different things that
@ -369,6 +370,7 @@ require('lazy').setup({
-- Enable Telescope extensions if they are installed
pcall(require('telescope').load_extension, 'fzf')
pcall(require('telescope').load_extension, 'ui-select')
pcall(require('telescope').load_extension, 'harpoon')
-- See `:help telescope.builtin`
local builtin = require 'telescope.builtin'