Files
neovim-config/lua/plugins/gx.lua
T
rootiest 2807567e34 🖍️ Plugin and Theme Formatting
- Formatting cleanup
2024-07-12 21:39:48 -04:00

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