You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
444 B
22 lines
444 B
---
|
|
- name: Performing APT cache update
|
|
ansible.builtin.apt:
|
|
upgrade: no
|
|
update_cache: yes
|
|
cache_valid_time: 86400
|
|
become: true
|
|
become_method: sudo
|
|
|
|
- name: Install vim
|
|
ansible.builtin.package:
|
|
name:
|
|
- vim
|
|
state: latest
|
|
become: true
|
|
become_method: sudo
|
|
|
|
- name: Download vim config from aperture (current user)
|
|
ansible.builtin.get_url:
|
|
dest: ~/.vimrc
|
|
url: https://aperture.dismyserver.net/.vimrc
|