diff options
-rw-r--r-- | .bashrc | 1 | ||||
-rw-r--r-- | .zshrc | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -122,6 +122,7 @@ export EDITOR=/usr/bin/vim # alias if grep -q Microsoft /proc/version; then alias psh='powershell.exe' + alias expl='explorer.exe' fi alias g='git' alias gaa='git add --all' @@ -8,6 +8,8 @@ HISTSIZE=1000 SAVEHIST=1000 HISTFILE=~/.zsh_history +export EDITOR=/usr/bin/vim + # autojump if [ ! -d /usr/share/autojump ]; then echo 'Installing autojump ... ' @@ -39,3 +41,10 @@ zplug load # fzf [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh + +# alias +if grep -q Microsoft /proc/version; then + alias psh='powershell.exe' + alias expl='explorer.exe' +fi + |