remove popup.nvim as dependency

This commit is contained in:
Sebastian Lyng Johansen 2021-10-27 21:46:05 +02:00
parent 54a47d3590
commit 212584d281
3 changed files with 2 additions and 3 deletions

View File

@ -32,7 +32,6 @@ Simply install via your favorite plugin manager.
```vim
Plug 'nvim-lua/plenary.nvim' " don't forget to add this one if you don't have it yet!
Plug 'nvim-lua/popup.nvim'
Plug 'ThePrimeagen/harpoon'
```

View File

@ -1,5 +1,5 @@
local harpoon = require("harpoon")
local popup = require("popup")
local popup = require("plenary.popup")
local log = require("harpoon.dev").log
local term = require("harpoon.term")

View File

@ -1,5 +1,5 @@
local harpoon = require("harpoon")
local popup = require("popup")
local popup = require("plenary.popup")
local Marked = require("harpoon.mark")
local log = require("harpoon.dev").log