From 7789449913292289e742272be76449a15a5f57c1 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Tue, 26 May 2020 09:17:43 +0200 Subject: [PATCH] Fix: create autoload directory before downloading plug.vim --- tasks/dotfiles.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index f5c8f0e..aa12f37 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -122,6 +122,13 @@ with_items: "{{ me }}" 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 get_url: url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim @@ -131,7 +138,6 @@ with_items: "{{ me }}" when: editor == 'nvim' - # Alacritty terminal - name: dotfiles -- Copy alacritty config copy: