Files
ansible_localhost/roles/nvim/tasks/main.yml
2019-09-20 16:10:33 -04:00

13 lines
308 B
YAML

- 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"