20 lines
506 B
Lua
20 lines
506 B
Lua
-- -----------------------------------------------------------------------------
|
|
-- ----------------------------------- gx --------------------------------------
|
|
-- -----------------------------------------------------------------------------
|
|
return {
|
|
"chrishrb/gx.nvim",
|
|
keys = {
|
|
{
|
|
"gx",
|
|
"<cmd>Browse<cr>",
|
|
mode = { "n", "x" },
|
|
},
|
|
},
|
|
cmd = { "Browse" },
|
|
init = function()
|
|
vim.g.netrw_nogx = 1
|
|
end,
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
config = true,
|
|
}
|