Updated zshrc to export SHELL (???) and added anyenv-update

This commit is contained in:
Anthony S Cicchetti 2018-11-12 18:07:17 -05:00
parent d3589ff0d5
commit 22063572a2
2 changed files with 13 additions and 0 deletions

View file

@ -9,6 +9,11 @@
path: ~/.anyenv/envs/
state: directory
- name: Ensure anyenv-plugins directory exists
file:
path: ~/.anyenv/plugins/
state: directory
- name: Install pyenv
shell: ~/.anyenv/bin/anyenv install pyenv
args:
@ -19,3 +24,9 @@
shell: ~/.anyenv/bin/anyenv install rbenv
args:
creates: ~/.anyenv/envs/rbenv
- name: Install anyenv-update
git:
repo: https://github.com/znz/anyenv-update.git
dest: ~/.anyenv/plugins/anyenv-update

View file

@ -45,6 +45,7 @@ antigen bundle git
antigen bundle command-not-found
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle thefuck
antigen bundle zsh-users/zsh-completions
antigen theme https://github.com/denysdovhan/spaceship-prompt spaceship
@ -73,4 +74,5 @@ else
fi
export PATH="$HOME/.anyenv/bin:$PATH"
export SHELL="/bin/zsh"
eval "$(anyenv init -)"