15 lines
517 B
Lua
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
|
|
}
|