2024-09-02 08:41:33 -07:00
|
|
|
return {
|
|
|
|
"AckslD/nvim-neoclip.lua",
|
|
|
|
dependencies = { "kkharji/sqlite.lua" },
|
2024-09-03 00:46:11 -07:00
|
|
|
config = function()
|
|
|
|
require("neoclip").setup({
|
|
|
|
history = 1000,
|
|
|
|
enable_persistent_history = true,
|
|
|
|
db_path = vim.fn.stdpath("data") .. "~/.config/databases/neoclip.sqlite3",
|
|
|
|
default_register = "+",
|
|
|
|
})
|
|
|
|
end,
|
2024-09-02 08:41:33 -07:00
|
|
|
}
|