commit | 1d8a682da1bdeea7e4e9851f97b3f2ab927e30bb | [log] [tgz] |
---|---|---|
author | Zack Williams <zdw@artisancomputer.com> | Wed Jun 08 08:33:43 2016 -0700 |
committer | Zack Williams <zdw@artisancomputer.com> | Wed Jun 08 08:33:43 2016 -0700 |
tree | 94200f12276a6bc73f49741003e2c8fccdf834ca | |
parent | 72a9ab4d56dff445ca41f48cb46f8e6631ee11a8 [diff] |
change default editor
diff --git a/roles/common-prep/tasks/main.yml b/roles/common-prep/tasks/main.yml index 6e82f91..3fa4625 100644 --- a/roles/common-prep/tasks/main.yml +++ b/roles/common-prep/tasks/main.yml
@@ -28,6 +28,16 @@ - tmux - vim +- name: Remove annoying default editors + apt: + pkg={{ item }} + state=absent + update_cache=yes + cache_valid_time=3600 + with_items: + - nano + - jove + - name: Enable vim syntax highlighting lineinfile: dest=/etc/vim/vimrc regexp="^\s*syntax on"