feat: add nvim-remote support to streamline git operations

This commit is contained in:
2024-09-16 09:46:29 -04:00
parent a73a24489a
commit f9b9d23f9a
+5
View File
@@ -136,3 +136,8 @@ vim.g.completion_borders = "rounded" ---@type string Options: [round|sharp|fla
-- ━━━━━━━━━━━━━━━━━━━━━━━━ Post-Config Functions ━━━━━━━━━━━━━━━━━━━━━━━━
-- Setup blinky cursor
require("utils.blinky").setup(vim.g.blinky)
-- Setup nvim-remote
if vim.fn.executable("nvr") == 1 then
vim.env.GIT_EDITOR = "nvr -cc split --remote-wait +'set bufhidden=wipe'"
end