16 lines
324 B
Lua
16 lines
324 B
Lua
return {
|
|
-- lazy.nvim
|
|
{
|
|
"sontungexpt/url-open",
|
|
event = "VeryLazy",
|
|
cmd = "URLOpenUnderCursor",
|
|
config = function()
|
|
local status_ok, url_open = pcall(require, "url-open")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
url_open.setup ({})
|
|
end,
|
|
},
|
|
}
|