From 157d07283bde6486866b7534fd9090b2fc49a710 Mon Sep 17 00:00:00 2001 From: Adam Wojasinski <85220023+awojasinski@users.noreply.github.com> Date: Tue, 2 Apr 2024 12:16:57 +0200 Subject: [PATCH] add instalation of util programs --- roles/utils/tasks/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 roles/utils/tasks/main.yml diff --git a/roles/utils/tasks/main.yml b/roles/utils/tasks/main.yml new file mode 100644 index 0000000..c2490ea --- /dev/null +++ b/roles/utils/tasks/main.yml @@ -0,0 +1,8 @@ +--- +- name: Install util commands + community.general.homebrew: + name: "{{ item }}" + with_items: + - bat # Like cat but with syntax highlighting + - fzf # Fuzzy finder + - entr # Run arbitrary commands when files change