summaryrefslogtreecommitdiff
path: root/tasks/dependencies.yml
blob: baba4a22a193483316260e832c734d5128309d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- name: Update Aptitude
  become: true
  ansible.builtin.apt:
    update_cache: true
  tags:
    - dependencies

- name: Install dependencies
  become: true
  ansible.builtin.package:
    name: [curl, git, docker, fzf, tmux, stow, unzip, zip, neovim, zsh, ripgrep]
  tags:
    - dependencies