My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[dishvim] update neogit config

dish 9f1b7354 2d326f72

+12
+12
neovim/plugins/neogit.nix
··· 1 1 { 2 2 config.vim.git.neogit = { 3 3 enable = true; 4 + mappings.open = "<Leader>gg"; 5 + setupOpts = { 6 + graph_style = "kitty"; 7 + process_spinner = true; 8 + git_services = { 9 + "git.pyrox.dev" = { 10 + pull_request = "https://\${host}/\${owner}/\${repository}/compare/\${branch_name}"; 11 + commit = "https://\${host}/\${owner}/\${repository}/commit/\${oid}"; 12 + tree = "https://\${host}/\${owner}/\${repository}/src/branch/\${branch_name}"; 13 + }; 14 + }; 15 + }; 4 16 }; 5 17 }