Fix: create autoload directory before downloading plug.vim
This commit is contained in:
parent
ad4c081b62
commit
7789449913
@ -122,6 +122,13 @@
|
|||||||
with_items: "{{ me }}"
|
with_items: "{{ me }}"
|
||||||
when: editor == 'nvim'
|
when: editor == 'nvim'
|
||||||
|
|
||||||
|
- name: dotfiles -- Creates nvim/autoload/
|
||||||
|
file:
|
||||||
|
path: /home/{{ item.username }}/.config/nvim/autoload/
|
||||||
|
state: directory
|
||||||
|
with_items: "{{ me }}"
|
||||||
|
when: editor == 'nvim'
|
||||||
|
|
||||||
- name: dotfiles -- Download plug.vim for nvim
|
- name: dotfiles -- Download plug.vim for nvim
|
||||||
get_url:
|
get_url:
|
||||||
url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
@ -131,7 +138,6 @@
|
|||||||
with_items: "{{ me }}"
|
with_items: "{{ me }}"
|
||||||
when: editor == 'nvim'
|
when: editor == 'nvim'
|
||||||
|
|
||||||
|
|
||||||
# Alacritty terminal
|
# Alacritty terminal
|
||||||
- name: dotfiles -- Copy alacritty config
|
- name: dotfiles -- Copy alacritty config
|
||||||
copy:
|
copy:
|
||||||
|
Loading…
Reference in New Issue
Block a user