From f3f9c7579ac2be760e3d23168a4a87d3f557d28b Mon Sep 17 00:00:00 2001 From: Ivan Golikov Date: Fri, 24 Jan 2025 17:51:28 +0100 Subject: [PATCH 1/2] Posting config --- .config/posting/config.yaml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .config/posting/config.yaml diff --git a/.config/posting/config.yaml b/.config/posting/config.yaml new file mode 100644 index 0000000..7a6499f --- /dev/null +++ b/.config/posting/config.yaml @@ -0,0 +1 @@ +theme: nebula From 3ee5fcfda4114e2fb810081df6d8dd104d40cb82 Mon Sep 17 00:00:00 2001 From: Ivan Golikov Date: Fri, 24 Jan 2025 17:51:38 +0100 Subject: [PATCH 2/2] Kitty installation on dev machine --- .local/share/dotfiles/install_dotfiles.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.local/share/dotfiles/install_dotfiles.yml b/.local/share/dotfiles/install_dotfiles.yml index 39df5e9..dfc0565 100644 --- a/.local/share/dotfiles/install_dotfiles.yml +++ b/.local/share/dotfiles/install_dotfiles.yml @@ -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 }}"