From 933c3dae342c49ee1cc346e1e99665ea5289dd6e Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Mon, 1 Jul 2024 21:59:11 +0200 Subject: [PATCH] feat(user/zsh): install zoxide Signed-off-by: Matej Focko --- roles/user/shell/zsh/tasks/install.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/roles/user/shell/zsh/tasks/install.yml b/roles/user/shell/zsh/tasks/install.yml index 6367b4c..21ec773 100644 --- a/roles/user/shell/zsh/tasks/install.yml +++ b/roles/user/shell/zsh/tasks/install.yml @@ -12,7 +12,13 @@ name: fzf state: present become: true - when: ansible_distribution not in [ "AlmaLinux" ] + +- name: Install zoxide for jumping around + ansible.builtin.package: + name: zoxide + state: present + become: true + when: ansible_distribution not in [ "openSUSE Leap" ] # “yet another dialog” for the functions in zshrc - name: Install yad for prompts from shell