polytech-ansible-2023/roles/vim/tasks/main.yml
Thomas Maurice 2a067a2fe4
More content and playbooks
* more readme.md content
* imported basic roles
* commented said basic roles
* trimmed down playbooks to be understandable
* update requirements.txt deps
2023-01-11 11:06:32 +01:00

12 lines
226 B
YAML

---
- name: Install vim
apt:
name: vim-nox
state: latest
# use the `copy` module to copy files to the remote host
- name: Configure vim
copy:
src: vimrc
dest: /etc/vim/vimrc
owner: root
group: root