Set up kerl and anyenv stuff

This commit is contained in:
Anthony Cicchetti 2019-06-09 13:21:55 -04:00
parent cf57c73127
commit 9b209648e5
4 changed files with 20 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env zsh
set -ex
# git pull
PATH="$PATH:$HOME/.local/bin"
if [[ `uname` == "Linux" ]]; then
if [[ -f /etc/pacman.conf ]]; then

View file

@ -10,9 +10,9 @@
state: directory
- name: Ensure anyenv is initialized
shell: ~/.anyenv/bin/anyenv init
shell: ~/.anyenv/bin/anyenv install --force-init
args:
creates: ~/.anyenv/envs
creates: ~/.config/anyenv/anyenv-install
- name: anyenv - pyenv
shell: ~/.anyenv/bin/anyenv install pyenv

View file

@ -0,0 +1,11 @@
---
- name: Create ~/bin directory
file:
path: ~/bin
state: directory
- name: Download kerl
get_url:
url: https://raw.githubusercontent.com/kerl/kerl/master/kerl
dest: ~/bin/kerl
mode: 0755

View file

@ -5,6 +5,7 @@
- import_tasks: tmux.yml
- import_tasks: alacritty.yml
- import_tasks: hyper.yml
- import_tasks: kerl.yml
- name: Install antigen
git:
@ -28,3 +29,8 @@
shell: curl -s https://get.sdkman.io | zsh
args:
creates: ~/.sdkman/bin/sdkman-init.sh
- name: Create ~/bin directory
file:
path: ~/bin
state: directory