Files
neovim-config/lua/plugins/gx.lua
T
rootiest 61ab7ad0d1 🌐 Add gx plugin
- Allows a more polished link-opener that supports more features
2024-07-11 01:38:47 -04:00

15 lines
517 B
Lua

-- -----------------------------------------------------------------------------
-- ----------------------------------- 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
}