Updated zshrc to export SHELL (???) and added anyenv-update
This commit is contained in:
parent
d3589ff0d5
commit
22063572a2
2 changed files with 13 additions and 0 deletions
|
@ -9,6 +9,11 @@
|
||||||
path: ~/.anyenv/envs/
|
path: ~/.anyenv/envs/
|
||||||
state: directory
|
state: directory
|
||||||
|
|
||||||
|
- name: Ensure anyenv-plugins directory exists
|
||||||
|
file:
|
||||||
|
path: ~/.anyenv/plugins/
|
||||||
|
state: directory
|
||||||
|
|
||||||
- name: Install pyenv
|
- name: Install pyenv
|
||||||
shell: ~/.anyenv/bin/anyenv install pyenv
|
shell: ~/.anyenv/bin/anyenv install pyenv
|
||||||
args:
|
args:
|
||||||
|
@ -19,3 +24,9 @@
|
||||||
shell: ~/.anyenv/bin/anyenv install rbenv
|
shell: ~/.anyenv/bin/anyenv install rbenv
|
||||||
args:
|
args:
|
||||||
creates: ~/.anyenv/envs/rbenv
|
creates: ~/.anyenv/envs/rbenv
|
||||||
|
|
||||||
|
- name: Install anyenv-update
|
||||||
|
git:
|
||||||
|
repo: https://github.com/znz/anyenv-update.git
|
||||||
|
dest: ~/.anyenv/plugins/anyenv-update
|
||||||
|
|
||||||
|
|
|
@ -45,6 +45,7 @@ antigen bundle git
|
||||||
antigen bundle command-not-found
|
antigen bundle command-not-found
|
||||||
antigen bundle zsh-users/zsh-syntax-highlighting
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||||
antigen bundle thefuck
|
antigen bundle thefuck
|
||||||
|
antigen bundle zsh-users/zsh-completions
|
||||||
|
|
||||||
antigen theme https://github.com/denysdovhan/spaceship-prompt spaceship
|
antigen theme https://github.com/denysdovhan/spaceship-prompt spaceship
|
||||||
|
|
||||||
|
@ -73,4 +74,5 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export PATH="$HOME/.anyenv/bin:$PATH"
|
export PATH="$HOME/.anyenv/bin:$PATH"
|
||||||
|
export SHELL="/bin/zsh"
|
||||||
eval "$(anyenv init -)"
|
eval "$(anyenv init -)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue