diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-05-24 20:14:41 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-05-24 20:14:41 -0700 |
commit | 736fbdd8ac58846a907dbc25af516fb7e3ca5af4 (patch) | |
tree | 1e3d48bdbfacf4269af2b07fc35334c145127712 /zshrc | |
parent | [emacs] Drop configuration for org-mode. (diff) | |
download | emacs.d-736fbdd8ac58846a907dbc25af516fb7e3ca5af4.tar.gz |
[zsh] Remove configuration for zsh
Remove unused documentation and configuration since we're back to bash.
Diffstat (limited to '')
-rw-r--r-- | zshrc | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/zshrc b/zshrc deleted file mode 100644 index 400cb2a..0000000 --- a/zshrc +++ /dev/null @@ -1,33 +0,0 @@ -# This is for the interactive shell - -# enable colors -autoload -U colors -colors - -# enable auto completion -autoload -U compinit -compinit -C -zstyle ':completion:*' completer _expand _complete _match _prefix - -# I want word boundary to be similar to bash -autoload -U select-word-style -select-word-style bash - -# keep the prompt simple and short -PROMPT="%3~ %# " - -# emacs style -bindkey -e - -# load custom aliases -source ~/.aliases - -# aliases for some directories -hash -d s="$HOME/src/source" -hash -d eb="$HOME/src/source/eventbus" -hash -d ops="$HOME/src/twitter-ops/" -hash -d science="$HOME/src/source/science/" -hash -d gcode="$HOME/gocode/src/" - -# this is for local stuff -[ -f ~/.zlogin_local ] && source ~/.zlogin_local |