From 186e82e3075388f83df5fbf99b53039732542390 Mon Sep 17 00:00:00 2001 From: Joseph Leon Date: Thu, 12 Feb 2015 13:42:31 -0600 Subject: [PATCH] Add zsh, htop, tmux and spf-13. --- ansible/site.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/ansible/site.yml b/ansible/site.yml index c18d4ed..3545164 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -15,6 +15,18 @@ - unzip - mysql-server - php5-mysql - - tree - #- php5-xdebug - #- php5-xhprof + + - name: Installing zsh, vim, git, tmux, etc. + apt: + name: "{{ item }}" + state: installed + with_items: + - zsh + - tmux + - htop + - tree + + - name: Installing spf13-vim, The Ultimate Vim Distribution (http://vim.spf13.com) + shell: curl https://j.mp/spf13-vim3 -L -o - | sh + +