Compare commits
No commits in common. "1168fdb539aa6fe1ae18da8b0cd6d94885a39899" and "82b6a01e94c78c3af1e1dccadcf19112dab8c1d8" have entirely different histories.
1168fdb539
...
82b6a01e94
6 changed files with 32 additions and 33 deletions
2
justfile
2
justfile
|
@ -17,7 +17,7 @@ bootstrap-home-manager target=(`whoami`+"@"+`hostname`):
|
||||||
nix run --extra-experimental-features "nix-command flakes" --no-write-lock-file github:nix-community/home-manager/ -- --extra-experimental-features "nix-command flakes" --flake .#{{target}} switch
|
nix run --extra-experimental-features "nix-command flakes" --no-write-lock-file github:nix-community/home-manager/ -- --extra-experimental-features "nix-command flakes" --flake .#{{target}} switch
|
||||||
|
|
||||||
format:
|
format:
|
||||||
nix fmt ./
|
nix fmt
|
||||||
|
|
||||||
home-gc:
|
home-gc:
|
||||||
home-manager expire-generations -7days
|
home-manager expire-generations -7days
|
||||||
|
|
|
@ -44,37 +44,36 @@
|
||||||
line-numbers = true;
|
line-numbers = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
# difftastic.enable=true;
|
||||||
|
# difftastic.background="dark";
|
||||||
userEmail = config.user.git.profile.email;
|
userEmail = config.user.git.profile.email;
|
||||||
userName = config.user.git.profile.name;
|
userName = config.user.git.profile.name;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
init.defaultBranch = "main";
|
init = {
|
||||||
|
defaultBranch = "main";
|
||||||
|
};
|
||||||
push = {
|
push = {
|
||||||
autoSetupRemote = true;
|
autoSetupRemote = true;
|
||||||
default = "simple";
|
default = "current";
|
||||||
followTags = true;
|
|
||||||
};
|
};
|
||||||
fetch = {
|
pull = {
|
||||||
prune = true;
|
ff = true;
|
||||||
pruneTags = true;
|
|
||||||
all = true;
|
|
||||||
};
|
};
|
||||||
pull.ff = true;
|
merge = {
|
||||||
merge.conflictstyle = "zdiff3";
|
conflictstyle = "zdiff3";
|
||||||
diff = {
|
|
||||||
algorithm = "histogram";
|
|
||||||
colorMoved = "plain";
|
|
||||||
mnemonicPrefix = true;
|
|
||||||
renames = true;
|
|
||||||
};
|
};
|
||||||
rerere = {
|
rebase = {
|
||||||
enabled = true;
|
autosquash = true;
|
||||||
autoupdate = true;
|
};
|
||||||
|
help = {
|
||||||
|
autocorrect = "prompt";
|
||||||
|
};
|
||||||
|
branch = {
|
||||||
|
sort = "-committerdate";
|
||||||
|
};
|
||||||
|
status = {
|
||||||
|
submodulesummary = true;
|
||||||
};
|
};
|
||||||
rebase.autosquash = true;
|
|
||||||
help.autocorrect = "prompt";
|
|
||||||
branch.sort = "-committerdate";
|
|
||||||
tag.sort = "version:refname";
|
|
||||||
status.submodulesummary = true;
|
|
||||||
};
|
};
|
||||||
includes =
|
includes =
|
||||||
if config.user.git.workProfile.enable
|
if config.user.git.workProfile.enable
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue