From 6a3bb0092651a4e256954c7e42bc3dbb6969c915 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 26 Aug 2023 08:58:54 -0500 Subject: [PATCH] feat(nvim): add gx.nvim --- dots/.config/nvim/lua/plugins/configs/gx.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dots/.config/nvim/lua/plugins/configs/gx.lua diff --git a/dots/.config/nvim/lua/plugins/configs/gx.lua b/dots/.config/nvim/lua/plugins/configs/gx.lua new file mode 100644 index 00000000..7530abf4 --- /dev/null +++ b/dots/.config/nvim/lua/plugins/configs/gx.lua @@ -0,0 +1,10 @@ +return { + { + "chrishrb/gx.nvim", + keys = { + { "gx", desc = "Open filepath or URI" } + }, + dependencies = { "nvim-lua/plenary.nvim" }, + config = true, -- default settings + }, +}