Skip to content

Commit

Permalink
apparently i have no idea how any of this is supposed to work
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikvtcodes committed Jan 7, 2025
1 parent 53db260 commit f103074
Showing 1 changed file with 40 additions and 21 deletions.
61 changes: 40 additions & 21 deletions home/henrikvt/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,32 +117,51 @@
s = "status -sb";
l = "log --all --graph --decorate --oneline";
};
extraConfig = ''
[init]
defaultBranch = main
# extraConfig = ''
# [init]
# defaultBranch = main

[color]
ui = auto
# [color]
# ui = auto

[color "diff"]
meta = white bold
frag = cyan bold
old = red bold
new = green bold
# [color "diff"]
# meta = white bold
# frag = cyan bold
# old = red bold
# new = green bold

[core]
editor = vim
excludesfile = ~/.gitignore
attributesfile = ~/.gitattributes
ignorecase = false
compression = 0
# [core]
# editor = vim
# excludesfile = ~/.gitignore
# attributesfile = ~/.gitattributes
# ignorecase = false
# compression = 0

[pull]
rebase = false
# [pull]
# rebase = false

[protocol "file"]
allow = always
'';
# [protocol "file"]
# allow = always
# '';
extraConfig = {
init.defaultBranch = "main";
color.ui = "auto";
color.diff = {
meta = "white bold";
frag = "cyan bold";
old = "red bold";
new = "green bold";
};
core = {
editor = "vim";
excludesfile = "~/.gitignore";
attributesfile = "~/.gitattributes";
ignorecase = false;
compression = 0;
};
pull.rebase = false;
protocol.file.allow = "always";
};
};
lazygit.enable = true;
gh = {
Expand Down

0 comments on commit f103074

Please sign in to comment.