The `tasks.yaml` has been updated to include the new variables file `plugins.yaml` which defines the `plugin_dir` and `plugins` variables. These are in turn used by config/local> to manage the plugin list outwith (neo)vim.
14 lines
318 B
YAML
14 lines
318 B
YAML
---
|
|
- include_vars: plugins.yaml
|
|
|
|
- name: remove minpac directory
|
|
when: ansible_os_family != "Windows"
|
|
file:
|
|
path: '{{vim_config_dir}}/pack/minpac'
|
|
state: absent
|
|
- name: remove minpac directory
|
|
when: ansible_os_family == "Windows"
|
|
win_file:
|
|
path: '{{vim_config_dir}}/pack/minpac'
|
|
state: absent
|