diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-01-31 16:27:14 +0100 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-01-31 16:27:14 +0100 |
| commit | 3ed25d53aad4dbe1a7aff81001c2768622b70b62 (patch) | |
| tree | 4a1dac605fe1753263800f2c5f9d03adc8266340 /roles/vim/tasks | |
| parent | 91e0855694503d9ac59b2c2ccba1765084e0856c (diff) | |
Install gvim on arch to have +clipboard support
Diffstat (limited to 'roles/vim/tasks')
| -rw-r--r-- | roles/vim/tasks/main.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/roles/vim/tasks/main.yml b/roles/vim/tasks/main.yml index 69f19c90..425ff151 100644 --- a/roles/vim/tasks/main.yml +++ b/roles/vim/tasks/main.yml @@ -1,8 +1,11 @@ --- +- name: "Include OS-specific variables" + ansible.builtin.include_vars: "{{ ansible_facts['os_family'] | lower }}.yml" + - name: "Ensure vim is installed" become: true ansible.builtin.package: - name: "vim" + name: "{{ vim_package_name }}" state: "present" - name: "Clone vimrc git repo" |
