Correzione ruoli per configurazioni locali all'utente.
This commit is contained in:
parent
8a06bb83b7
commit
795f2192be
5 changed files with 52 additions and 0 deletions
20
roles/vim-user-cfg/tasks/config/pkgman/installation.yml
Normal file
20
roles/vim-user-cfg/tasks/config/pkgman/installation.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
|
||||
- name: Creating autoload dir
|
||||
ansible.builtin.file:
|
||||
path: "{{ lookup('ansible.builtin.env', 'HOME') }}/.vim/autoload"
|
||||
state: directory
|
||||
mode: '0755'
|
||||
tags:
|
||||
- vim-plug
|
||||
- vim-plug-install
|
||||
|
||||
- name: Installing vim-plug from git
|
||||
ansible.builtin.get_url:
|
||||
url: "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.vim/autoload/plug.vim"
|
||||
mode: '0644'
|
||||
tags:
|
||||
- vim-plug
|
||||
- vim-plug-install
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue