diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-02 17:38:30 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-02 17:38:30 -0400 |
commit | f8d32a9222f0259bda476a0d14b7c57aff984970 (patch) | |
tree | cc418cb034f7c2be918afb13a4d9a858e78fd5d1 | |
parent | Create 'dotfiles/home/.xinitrc' (diff) | |
download | dotfiles.old-f8d32a9222f0259bda476a0d14b7c57aff984970.tar.gz dotfiles.old-f8d32a9222f0259bda476a0d14b7c57aff984970.tar.bz2 dotfiles.old-f8d32a9222f0259bda476a0d14b7c57aff984970.zip |
Remove `--git` flag from `ls` alias in `dotfiles/home/.bashrc`
On crappy binary-based distros like Ubuntu, `exa` doesn't have the
functionality required to use the `--git` flag. I don't really care about
it anyways so I'll just remove the flag.
-rw-r--r-- | home/.bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.bashrc b/home/.bashrc index 92a4a3c..e80f8bc 100644 --- a/home/.bashrc +++ b/home/.bashrc | |||
@@ -77,5 +77,5 @@ PS2=" > " | |||
77 | # Aliases | 77 | # Aliases |
78 | ######### | 78 | ######### |
79 | alias wget="wget -c --tries=10 --timeout=10 --waitretry=30s" | 79 | alias wget="wget -c --tries=10 --timeout=10 --waitretry=30s" |
80 | alias ls="exa -1aFghlU --git --color=always --sort=name --time-style=iso" | 80 | alias ls="exa -1aFghlU --color=always --sort=name --time-style=iso" |
81 | ########################################################################## | 81 | ########################################################################## |