trying out gx.nvim

This commit is contained in:
Joost Agterhoek 2024-10-29 14:38:44 +01:00
parent ba0f68dc61
commit a313e71682

11
lua/custom/plugins/gx.lua Normal file
View File

@ -0,0 +1,11 @@
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' }, -- Required for Neovim < 0.10.0
config = true, -- default settings
submodules = false, -- not needed, submodules are required
}