diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/shell/.zshrc | 3 | ||||
| -rw-r--r-- | .config/shell/aliasrc | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/.config/shell/.zshrc b/.config/shell/.zshrc index baecdca..542c6df 100644 --- a/.config/shell/.zshrc +++ b/.config/shell/.zshrc @@ -4,6 +4,7 @@ # ─── 1) Fundamental environment ────────────────────────────────────────────── export PATH="$HOME/.local/bin:$PATH" +[ -f "$ALIASRC" ] && source "$ALIASRC" # ─── 2) Shell behaviour ────────────────────────────────────────────────────── autoload -U colors && colors @@ -96,8 +97,6 @@ zmodload zsh/complist fpath=(/usr/share/zsh/site-functions $fpath) _comp_options+=(globdots) # hidden files -[ -f "$ALIASRC" ] && source "$ALIASRC" - # ─── 8) Keybindings ────────────────────────────────────────────────────────── # Better backspace in vi mode bindkey -v '^?' backward-delete-char diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 5bf3339..32f1824 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -13,7 +13,6 @@ done; unset command # Verbosity and settings that you pretty much just always are going to want. alias \ cp="cp -iv" \ - echo="echo -n" \ journalctl="journalctl -xe" \ less="less -XER" \ ls="lsn" \ @@ -70,4 +69,4 @@ alias \ gc="git commit" \ gp="git push" \ gr="git rm" \ - gs="git status" \ + gs="git status" |
