Files
neovim-config/lua/plugins/gx.lua
T
rootiest 83b3ce29f5 👁️🗨️ Which-key Update
- Implement the new which-key spec
- Particularly: ICONS!
2024-07-12 18:55:02 -04:00

21 lines
546 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
}