Neovim plugin improving access to clipboard history (mirror)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added dependency statements for sqlite3 to init for packer and lazy

+4
+4
README.md
··· 24 24 ```lua 25 25 { 26 26 "ptdewey/yankbank-nvim", 27 + 28 + dependencies = "kkharji/sqlite.lua", 29 + 27 30 config = function() 28 31 require('yankbank').setup() 29 32 end, ··· 34 37 ```lua 35 38 use { 36 39 'ptdewey/yankbank-nvim', 40 + requires = {'kkharji/sqlite.lua'} 37 41 config = function() 38 42 require('yankbank').setup() 39 43 end,