Merge branch 'master' of git.anthonycicchetti.com:anthonycicc/dotfiles
This commit is contained in:
commit
8ba11c6524
4 changed files with 20 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
11
playbooks/roles/common/tasks/kerl.yml
Normal file
11
playbooks/roles/common/tasks/kerl.yml
Normal 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
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue