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}"; + }; + }; + }; }; }