feat: add Zed Editor installation tasks and include in workstation setup

This commit is contained in:
2025-05-20 19:04:24 +02:00
parent 21c4b17f76
commit 0fd68d8460
7 changed files with 24 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
- name: Check if Zed Editor is installed
ansible.builtin.command:
cmd: zed --version
register: zed_version
ignore_errors: true
- name: Install Zed Editor
ansible.builtin.command:
cmd: curl -f https://zed.dev/install.sh | sh
ignore_errors: true
when: zed_version.rc != 0