From 9f1b735464bda3eb7981b72db70d36ac27e789f0 Mon Sep 17 00:00:00 2001 From: dish Date: Fri, 30 Jan 2026 17:16:06 -0500 Subject: [PATCH] [dishvim] update neogit config --- neovim/plugins/neogit.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/neovim/plugins/neogit.nix b/neovim/plugins/neogit.nix index 62ca2afd..4f09dfab 100644 --- a/neovim/plugins/neogit.nix +++ b/neovim/plugins/neogit.nix @@ -1,5 +1,17 @@ { config.vim.git.neogit = { enable = true; + mappings.open = "gg"; + setupOpts = { + graph_style = "kitty"; + process_spinner = true; + git_services = { + "git.pyrox.dev" = { + pull_request = "https://\${host}/\${owner}/\${repository}/compare/\${branch_name}"; + commit = "https://\${host}/\${owner}/\${repository}/commit/\${oid}"; + tree = "https://\${host}/\${owner}/\${repository}/src/branch/\${branch_name}"; + }; + }; + }; }; } -- 2.51.2