initial commit
This commit is contained in:
15
nvim/lua/plugins/url-open.lua
Normal file
15
nvim/lua/plugins/url-open.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user