diff options
author | Camil Staps | 2016-03-14 22:09:58 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-30 19:11:07 +0100 |
commit | 8fc531b05e0f70f3148fde8bf1f9049136f5d236 (patch) | |
tree | 9368042f0c21844c9952281aeb585c15bcfd9001 /zsh/zshrc.symlink | |
parent | Clean limits to 80 chars (diff) |
removed zsh
Diffstat (limited to 'zsh/zshrc.symlink')
-rw-r--r-- | zsh/zshrc.symlink | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/zsh/zshrc.symlink b/zsh/zshrc.symlink deleted file mode 100644 index 9e1d5d2..0000000 --- a/zsh/zshrc.symlink +++ /dev/null @@ -1,27 +0,0 @@ -export DOTFILES=$HOME/dotfiles -export ZSH=$HOME/.oh-my-zsh -export PROJECTS=$HOME/VersionControl - -if [[ -a ~/.localrc ]]; then - source ~/.localrc -fi - -for config_file ($DOTFILES/**/*.zsh) source $config_file - -ZSH_THEME="agnoster" -plugins=(git) -source $ZSH/oh-my-zsh.sh - -source $HOME/.profile - -unsetopt ignoreeof - -autoload -U compinit -compinit - -for config_file ($DOTFILES/**/completion.zsh); do - if test -f $config_file; then - source $config_file - fi -done - |