diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-01-19 10:39:46 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-01-19 10:39:46 -0800 |
commit | 9353c33abad9a486c67ea8bc82e06b37d3b36a92 (patch) | |
tree | b27ff6c5259e7cd983b55153d1fe1438cc75cd6b /configs/rcs/bashrc | |
parent | [bash] go back to simple prompt. (diff) | |
download | emacs.d-9353c33abad9a486c67ea8bc82e06b37d3b36a92.tar.gz |
clean up.
Removed scripts and some configs, they will be in their own repo.
Diffstat (limited to 'configs/rcs/bashrc')
-rwxr-xr-x | configs/rcs/bashrc | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/configs/rcs/bashrc b/configs/rcs/bashrc deleted file mode 100755 index 302472a..0000000 --- a/configs/rcs/bashrc +++ /dev/null @@ -1,54 +0,0 @@ -export EDITOR="emacsclient -nw" -export HISTFILE= -export LANG="en_US.UTF-8" -export LC_ALL="$LANG" -export LC_CTYPE="$LANG" -export PAGER="less" -export TZ=America/Los_Angeles -export GOPATH="${HOME}/workspace/go" - -[ -z "$PS1" ] && return - -# prompts -export PS1="\h:\w % " - -RC_DIR=$(dirname $(readlink ${BASH_SOURCE[0]})) - -# finally, build the path and source a few files -__add_to_path_if_exists() { - [ -d "$1" ] && export PATH="$1:$PATH" -} - -__source_file_if_exists() { - [ -s "$1" ] && source "$1" -} - -__add_to_path_if_exists "${HOME}/workspace/bin" -__add_to_path_if_exists "${GOPATH}/bin" -__add_to_path_if_exists "${RC_DIR}/../../scripts/" - -__source_file_if_exists "/opt/google-cloud-sdk/path.bash.inc" -__source_file_if_exists "/opt/google-cloud-sdk/completion.bash.inc" - -# Twitter paths -__add_to_path_if_exists "${HOME}/workspace/git.twitter.biz/source/dist" -__add_to_path_if_exists "/opt/twitter/opt/go/libexec/bin" -__add_to_path_if_exists "/opt/twitter/bin" -__source_file_if_exists "/opt/twitter/rvm/scripts/rvm" - -alias cp="cp -i" -alias l="ls" -alias la="ls -a" -alias ll="ls -lh" -alias lt="ls -lhtr" -alias mv="mv -i" -alias rm="rm -i" - -alias g="git" -alias s="cd ~/workspace/git.twitter.biz/source" - -alias gomesosbuild="ssh -A smf1-egu-15-sr1.prod.twitter.com" - -alias smf1pending='curl -s https://aurora-smf1.twitter.biz/pendingtasks | jq .' -alias atlapending='curl -s https://aurora-atla.twitter.biz/pendingtasks | jq .' - |