diff options
| author | Peter Son Struschka <me@peter-struschka.com> | 2018-09-03 19:39:34 +0700 |
|---|---|---|
| committer | Peter Son Struschka <me@peter-struschka.com> | 2018-09-03 19:39:34 +0700 |
| commit | df01da0b697f9bba8d1b8c1f8fcf65983539a74b (patch) | |
| tree | 2b3b3e987db69f5a05699c70f706f740040bf988 /zsh/.zshrc | |
| parent | f7b6d55de6b976d220320deb7d12b12cb775cc98 (diff) | |
| download | dotfiles-df01da0b697f9bba8d1b8c1f8fcf65983539a74b.tar.gz dotfiles-df01da0b697f9bba8d1b8c1f8fcf65983539a74b.tar.bz2 dotfiles-df01da0b697f9bba8d1b8c1f8fcf65983539a74b.tar.lz dotfiles-df01da0b697f9bba8d1b8c1f8fcf65983539a74b.tar.xz dotfiles-df01da0b697f9bba8d1b8c1f8fcf65983539a74b.tar.zst dotfiles-df01da0b697f9bba8d1b8c1f8fcf65983539a74b.zip | |
Added zsh config
Diffstat (limited to 'zsh/.zshrc')
| -rw-r--r-- | zsh/.zshrc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..c181b04 --- /dev/null +++ b/zsh/.zshrc @@ -0,0 +1,35 @@ +# Created by newuser for 5.4.2 +source /usr/share/zsh/share/antigen.zsh + +antigen use oh-my-zsh + +antigen bundle git +antigen bundle pip +antigen bundle lein +antigen bundle command-not-found +antigen bundle docker + +fpath+=~/.zfunc +antigen bundle zsh-users/zsh-syntax-highlighting +antigen bundle zsh-users/zsh-autosuggestions +antigen bundle zsh-users/zsh-completions +antigen bundle zsh-users/zsh-history-substring-search + +antigen theme https://gist.github.com/pstruschka/c05686e6cf10e12471a3104e42e6366b.git agnoster_custom + +antigen apply + + +if ! type "exa" > /dev/null; then + echo exa Missing, using ls +else + alias ls=exa +fi +eval $(thefuck --alias) + + +# python virtualenvwrapper +export WORKON_HOME=~/.virtualenvs +source /usr/bin/virtualenvwrapper_lazy.sh + +eval "$(fasd --init auto)" |
