From 13f350e6fb9b1627b23255c00d02cd042de00c14 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Tue, 26 May 2020 09:21:53 +0200 Subject: [PATCH 1/4] Feat: add is_pacman_cache_server --- vars/Choux.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/vars/Choux.yml b/vars/Choux.yml index 6ca3775..be7a029 100644 --- a/vars/Choux.yml +++ b/vars/Choux.yml @@ -21,3 +21,4 @@ autofs: music_dir: /media/documents/musique/ +is_pacman_cache_server: True From c72a4a38b91f266a8b99bc36e9a806a4dbc0085d Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Tue, 26 May 2020 09:22:47 +0200 Subject: [PATCH 2/4] Fix: nvim directory destination --- tasks/dotfiles.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index aa12f37..7703e36 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -9,8 +9,8 @@ # Zsh config - name: dotfiles -- Download antibody - get_url: - url: https://raw.githubusercontent.com/getantibody/installer/master/install + get_url: + url: https://raw.githubusercontent.com/getantibody/installer/master/install dest: /tmp/antibody.sh mode: 0770 when: prompt == "zsh" @@ -116,7 +116,7 @@ - name: dotfiles -- Copy nvim config copy: src: files/dotfiles/nvim - dest: /home/{{ item.username }}/.config/nvim + dest: /home/{{ item.username }}/.config owner: "{{ item.username }}" group: "{{ item.group }}" with_items: "{{ me }}" From 96b0e7cc4487517d9a85d6de9024509306d19e27 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Tue, 26 May 2020 09:26:23 +0200 Subject: [PATCH 3/4] Fix: directories... --- tasks/dotfiles.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index 7703e36..afabba7 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -122,13 +122,6 @@ 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 From aa66af8188eb10a07b6b2678cda115a01d08365c Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Tue, 26 May 2020 10:11:27 +0200 Subject: [PATCH 4/4] Fix: alacritty config destination --- tasks/dotfiles.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index afabba7..9e60077 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -135,7 +135,7 @@ - name: dotfiles -- Copy alacritty config copy: src: files/dotfiles/alacritty - dest: /home/{{ item.username }}/.config/alacritty + dest: /home/{{ item.username }}/.config owner: "{{ item.username }}" group: "{{ item.group }}" with_items: "{{ me }}"