From d5331237e637adb2ed79708d9cfd60ecc4fd0c14 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sat, 15 Feb 2014 19:55:21 -0600 Subject: [PATCH] ZSH FTW - removing bash files --- bash/bash_profile.symlink | 3 --- bash/bashrc.symlink | 29 ----------------------------- 2 files changed, 32 deletions(-) delete mode 100644 bash/bash_profile.symlink delete mode 100644 bash/bashrc.symlink diff --git a/bash/bash_profile.symlink b/bash/bash_profile.symlink deleted file mode 100644 index 1dc2a02..0000000 --- a/bash/bash_profile.symlink +++ /dev/null @@ -1,3 +0,0 @@ -if [ -f ~/.bashrc ]; then - source ~/.bashrc -fi diff --git a/bash/bashrc.symlink b/bash/bashrc.symlink deleted file mode 100644 index 421e56b..0000000 --- a/bash/bashrc.symlink +++ /dev/null @@ -1,29 +0,0 @@ -# aliases -alias ll='ls -l' -alias lld='ls -l | grep ^d' -alias ta='tmux attach' -alias rmf='rm -rf' - -# custom scripts -export MY_BIN=~/bin -export PATH=$MY_BIN:$PATH - -export MY_EDITOR="mvim -v"; -export EDITOR="vim" - -# export EDITOR='subl -w' -# add ~/.node_libraries to the node path -export NODE_PATH=~/.node_libraries - -if [ -f ~/.git-completion.bash ]; then - source ~/.git-completion.bash -fi - -# export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' - -[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function - -# setting a custom prompt, with git branch info -export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' - -PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting