🌐 Add gx plugin

- Allows a more polished link-opener that supports more features
This commit is contained in:
2024-07-11 01:38:47 -04:00
parent 4990475a9a
commit 61ab7ad0d1
+14
View File
@@ -0,0 +1,14 @@
-- -----------------------------------------------------------------------------
-- ----------------------------------- gx --------------------------------------
-- -----------------------------------------------------------------------------
return {
"chrishrb/gx.nvim",
keys = { { "gx", "<cmd>Browse<cr>", mode = { "n", "x" } } },
cmd = { "Browse" },
init = function()
vim.g.netrw_nogx = 1 -- disable netrw gx
end,
dependencies = { "nvim-lua/plenary.nvim" },
config = true, -- default settings
}