From 33173641cc7d26ff6aec89cc0e4047a30b0ba2a0 Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Tue, 5 Jun 2018 13:51:45 -0400 Subject: [PATCH] moved bash_aliases to aliases to use with zsh and bash --- .bash_aliases => .aliases | 0 .bashrc## | 4 ++-- .zshrc | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) rename .bash_aliases => .aliases (100%) diff --git a/.bash_aliases b/.aliases similarity index 100% rename from .bash_aliases rename to .aliases diff --git a/.bashrc## b/.bashrc## index f63d3d7..2ea9258 100644 --- a/.bashrc## +++ b/.bashrc## @@ -97,8 +97,8 @@ fi # ~/.bash_aliases, instead of adding them here directly. # See /usr/share/doc/bash-doc/examples in the bash-doc package. -if [ -f ~/.bash_aliases ]; then - . ~/.bash_aliases +if [ -f ~/.aliases ]; then + . ~/.aliases fi # split tmux window for monitoring with watch or any command diff --git a/.zshrc b/.zshrc index 4afebcb..a404500 100644 --- a/.zshrc +++ b/.zshrc @@ -92,3 +92,4 @@ source $ZSH/oh-my-zsh.sh # Example aliases # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" +source $HOME/.aliases