added nvim module

This commit is contained in:
Phil
2019-09-20 16:10:33 -04:00
parent 89a1452611
commit 61555f072b
2 changed files with 13 additions and 0 deletions

View File

@ -3,3 +3,4 @@
- role: gantsign.oh-my-zsh
users:
- username: pskentelbery
- nvim

12
roles/nvim/tasks/main.yml Normal file
View File

@ -0,0 +1,12 @@
- name: install dependencies
package:
name: '{{ item }}'
state: present
with_items:
- git
- curl
- nvim
- name: install vim-plug
command: "curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"