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.

67 lines
1.2 KiB

2 years ago
- name: Homebrew
hosts: all
2 years ago
tasks:
2 years ago
- name: Install Homebrew formulae
community.general.homebrew:
2 years ago
name: "{{ item }}"
loop:
3 months ago
- aerospace
2 years ago
- chruby
- difftastic
- direnv
- docker
- docker-compose
- efm-langserver
- entr
12 months ago
- eza
2 years ago
- fd
- fzf
- git
- git-lfs
- jq
1 year ago
- kitty
2 years ago
- luarocks
- pam-reattach
2 years ago
- ripgrep
- ruby-install
- shellcheck
- tmux
- tree
- zoxide
2 years ago
- zsh
2 years ago
3 months ago
- felixkratz/formulae/sketchybar
12 months ago
- name: Install Homebrew formulae from HEAD
community.general.homebrew:
name: "{{ item }}"
state: head
loop:
- neovim
2 years ago
- name: Install Homebrew casks
community.general.homebrew_cask:
2 years ago
name: "{{ item }}"
loop:
2 years ago
- alfred
3 months ago
- arc
2 years ago
- fantastical
- firefox-developer-edition
- hammerspoon
- mailmate
- obsidian
3 months ago
- orbstack
2 years ago
- slack
- zoom
2 years ago
12 months ago
- font-source-code-pro
- font-symbols-only-nerd-font
2 years ago
- name: Heed docker-compose caveats
block:
- name: Create Docker CLI plugins config dir
ansible.buitin.file:
dest: ~/.docker/cli-plugins
state: directory