more restructering

This commit is contained in:
2022-12-28 20:29:41 +01:00
parent ce61facff9
commit 4916c4eca2
7 changed files with 92 additions and 121 deletions

18
lua/plugins/neoclip.lua Normal file
View File

@@ -0,0 +1,18 @@
return {
"AckslD/nvim-neoclip.lua",
dependencies = {
{ 'kkharji/sqlite.lua', module = 'sqlite' },
-- { 'nvim-telescope/telescope.nvim' },
},
config = true,
keys = {
{
'[',
function ()
require('telescope').extensions.neoclip.default({initial_mode='normal'})
end,
desc = 'NeoClip'
}
},
event = 'VeryLazy'
}