diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-06-12 16:14:57 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-06-12 16:14:57 -0700 |
commit | d87b901c5e7cc7c78109b51da64ffa78cd6e8f15 (patch) | |
tree | fba122b18257e5541dc02b0944b603ecf33e6d57 /zshenv | |
parent | [emacs] move org to documents instead of dropbox (diff) | |
download | emacs.d-d87b901c5e7cc7c78109b51da64ffa78cd6e8f15.tar.gz |
[zsh] replace bash with zsh
In the next version of OS X, zsh will become the default shell.
Diffstat (limited to '')
-rw-r--r--[-rwxr-xr-x] | zshenv (renamed from bashrc) | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/bashrc b/zshenv index e73f17d..68c3eb3 100755..100644 --- a/bashrc +++ b/zshenv @@ -6,10 +6,16 @@ export PAGER="less" export TZ=America/Los_Angeles export GOPATH="${HOME}/workspace/go" -[ -z "$PS1" ] && return +export PROMPT="%/ %# " -# prompts -export PS1="\w % " +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 add="arc diff --draft" # finally, build the path and source a few files __add_to_path_if_exists() { @@ -23,23 +29,10 @@ __source_file_if_exists() { __add_to_path_if_exists "${GOPATH}/bin" __add_to_path_if_exists "/opt/twitter/opt/go/libexec/bin" -__source_file_if_exists "/opt/google-cloud-sdk/path.bash.inc" -__source_file_if_exists "/opt/google-cloud-sdk/completion.bash.inc" -__source_file_if_exists "${HOME}/.bash_local" +__source_file_if_exists "/opt/google-cloud-sdk/path.zsh.inc" +__source_file_if_exists "/opt/google-cloud-sdk/completion.zsh.inc" # Twitter paths __add_to_path_if_exists "${HOME}/workspace/source/dist" __add_to_path_if_exists "/opt/twitter/bin" -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 add="arc diff --draft" -alias tma="tmux attach || tmux" - -alias smf1pending='curl -s https://aurora-smf1.twitter.biz/pendingtasks | jq .' -alias atlapending='curl -s https://aurora-atla.twitter.biz/pendingtasks | jq .' |