This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/zsh/tasks/main.yml
Pim Kunis d2ea5d5771 install neovim from PPA
fix zsh startup by removing asdf scripts
2022-12-18 13:03:12 +01:00

17 lines
345 B
YAML

- name: Install zsh
become: true
apt:
state: latest
update_cache: yes
cache_valid_time: 86400 # One day
pkg:
- zsh
- name: Set default shell to zsh
become: true
user:
name: "{{ ansible_user_id }}"
shell: /usr/bin/zsh
- name: Install .zshrc
copy:
src: "{{ role_path }}/files/.zshrc"
dest: ~/.zshrc