From 61ab7ad0d195772f52c79e514f1618b62570c2b4 Mon Sep 17 00:00:00 2001 From: rootiest Date: Thu, 11 Jul 2024 01:38:47 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=90=20Add=20gx=20plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Allows a more polished link-opener that supports more features --- lua/plugins/gx.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/plugins/gx.lua diff --git a/lua/plugins/gx.lua b/lua/plugins/gx.lua new file mode 100644 index 0000000..d4b57f6 --- /dev/null +++ b/lua/plugins/gx.lua @@ -0,0 +1,14 @@ +-- ----------------------------------------------------------------------------- +-- ----------------------------------- gx -------------------------------------- +-- ----------------------------------------------------------------------------- + +return { + "chrishrb/gx.nvim", + keys = { { "gx", "Browse", 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 +}