neovimconfig/lua/plugin/bin.lua
2024-08-31 18:45:08 +02:00

11 lines
187 B
Lua

return {
{
"matze/wastebin.nvim",
config = function ()
require("wastebin").setup({
url = "https://bin.xesc.de",
open_cmd="xdg-open"
})
end
}
}