mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nix] Add some more git configuration
This commit is contained in:
parent
4890ae1737
commit
9862870669
1 changed files with 14 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, dotfiles, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.git = {
|
||||
|
@ -7,13 +7,24 @@
|
|||
|
||||
userName = "Alyxia Sother";
|
||||
userEmail = "alyxia@riseup.net";
|
||||
|
||||
signing = {
|
||||
key = "01E16C4E775A37E4";
|
||||
signByDefault = true;
|
||||
};
|
||||
|
||||
delta.enable = true;
|
||||
delta = {
|
||||
enable = true;
|
||||
options = {
|
||||
line-numbers = true;
|
||||
features = "decorations";
|
||||
syntax-theme = "ansi";
|
||||
};
|
||||
};
|
||||
|
||||
extraConfig = {
|
||||
tag.gpgsign = true;
|
||||
init.defaultBranch = "master";
|
||||
};
|
||||
};
|
||||
|
||||
programs.gitui.enable = true;
|
||||
|
|
Loading…
Reference in a new issue