mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 15:01:59 +01:00
17 lines
383 B
YAML
17 lines
383 B
YAML
---
|
|
- name: Copy neovim conf file
|
|
copy:
|
|
src: init.vim
|
|
dest: ~/.config/nvim/
|
|
notify: trigger plug install
|
|
|
|
- name: Create autoload vim dir
|
|
file:
|
|
path: ~/.local/share/nvim/site/autoload/
|
|
state: directory
|
|
|
|
- name: Install vim plug
|
|
get_url:
|
|
url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
dest: ~/.local/share/nvim/site/autoload/
|