diff options
author | EuAndreh <eu@euandre.org> | 2024-01-04 11:20:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-01-04 11:20:48 -0300 |
commit | 209d5c5dcc1eda9ce084c505b362fb09fff3d56f (patch) | |
tree | b9b7774820d6cc61cd40d980ac549aa2a52a25e9 | |
parent | etc/sh/rc: Add _XOPEN_SOURCE=700 to $CFLAGS (diff) | |
download | dotfiles-209d5c5dcc1eda9ce084c505b362fb09fff3d56f.tar.gz dotfiles-209d5c5dcc1eda9ce084c505b362fb09fff3d56f.tar.xz |
etc/sh/rc: Fix "c" alias to use the correct command
-rw-r--r-- | etc/sh/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -193,7 +193,7 @@ alias d='vcs diff' alias ds='vcs diff -- --staged' alias tpd='cd "$(mkdtemp)"' alias cls='tmux send-keys -R \; clear-history' -alias c='clear' +alias c='clean' alias l='ls -lahF --color' alias grep='grep --color=auto' |