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 | af6b1ed0f92d43da84f1341ed0f0cc6743ceb19e (patch) | |
| tree | 4a1dac605fe1753263800f2c5f9d03adc8266340 /roles/vim/tasks/main.yml | |
| parent | 7272755bc3c397179197cf03c60704e10165a1f3 (diff) | |
Install gvim on arch to have +clipboard support
Diffstat (limited to 'roles/vim/tasks/main.yml')
| -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" |
