Skip to content

Commit

Permalink
fix(fish) clr abbr -> clear
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnossiom committed Aug 12, 2024
1 parent 65988f4 commit 31039ff
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion home-manager/modules/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ with lib;
pretty.custom = "format:%C(red)%h%C(reset) -%C(yellow)%d%C(reset) %s %C(green)(%cd) %C(bold blue)<%an>";
log.date = "human";

advice.addEmptyPathspec = false;
advice = {
addEmptyPathspec = false;
forceDeleteBranch = false;
};

# TODO: connect to a SSOT
github.user = "mrnossiom";
Expand Down
14 changes: 7 additions & 7 deletions home-manager/modules/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@ with lib;
ur = " unlink result";

# Use newer tools
cat = "# Nah"; # bat
grep = "# Nah"; # rg
tr = "# Nah"; # srgn
cat = "# nah"; # bat
grep = "# nah"; # rg
tr = "# nah"; # srgn

# Do not keep these commands in history
shutdown = " shutdown";
clr = " clear";
reboot = " reboot";
history = " history";
clear = " clear";
exit = " exit";
history = " history";
reboot = " reboot";
shutdown = " shutdown";
};

functions = {
Expand Down

0 comments on commit 31039ff

Please sign in to comment.