Compare commits

..

2 commits

Author SHA1 Message Date
Ivan Golikov
3ee5fcfda4 Kitty installation on dev machine 2025-01-24 17:51:38 +01:00
Ivan Golikov
f3f9c7579a Posting config 2025-01-24 17:51:28 +01:00
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1 @@
theme: nebula

View file

@ -11,6 +11,9 @@
- tldr
- fzf
common_packages_dev_machine:
- kitty
brew_packages:
- neovim
- difftastic
@ -65,6 +68,12 @@
packages: "{{ common_packages + apt_packages }}"
when: is_ubuntu
- name: Get really full package list
ansible.builtin.set_fact:
packages: "{{ common_packages_dev_machine + packages }}"
tags:
- dev_tools
- name: Install packages (macOS)
community.general.homebrew:
name: "{{ packages }}"