general: move vim autoload to usersettings

This commit is contained in:
Jannik Beyerstedt 2019-10-27 22:34:31 +01:00
parent c5cab3c075
commit 06a1720e30
4 changed files with 11 additions and 29 deletions

View file

@ -36,6 +36,16 @@
- { src: '{{ role_path }}/files/dotfiles/_gitconfig', dest: '.gitconfig' }
when: usersetup_gitconfig == true
- name: usersettings - Create .vim directory
file:
path: .vim/autoload
state: directory
- name: usersettings - Install vim plugin manager
get_url:
url: https://tpo.pe/pathogen.vim
dest: .vim/autoload/pathogen.vim
- name: usersettings - Install vim plugins
git:
repo: "{{ item.repo }}"