2022-03-23 01:03:04 +00:00
|
|
|
- name: Remove user zsh config
|
|
|
|
tags: [zsh]
|
|
|
|
block:
|
|
|
|
- name: Remove .zshrc
|
2022-03-24 15:18:47 +00:00
|
|
|
file: state=absent path={{ home }}/.zshrc
|
2022-03-23 01:03:04 +00:00
|
|
|
- name: Remove zsh zstyles config
|
2022-03-24 15:18:47 +00:00
|
|
|
file: state=absent path={{ home }}/.zstyles
|
2022-03-23 01:03:04 +00:00
|
|
|
- name: Remove .zshrc.d folder/link
|
2022-03-24 15:18:47 +00:00
|
|
|
file: state=absent path={{ home }}/.zshrc.d
|
2022-03-23 01:03:04 +00:00
|
|
|
|
|
|
|
- name: Remove zsh syntax highlighting
|
2022-03-24 15:18:47 +00:00
|
|
|
file: state=absent path={{ home }}/.zshrc.d/zsh-syntax-highlighting
|
2022-03-23 01:03:04 +00:00
|
|
|
when: not zsh_opt_config
|
|
|
|
- name: Remove zsh syntax highlighting (/opt/zsh)
|
|
|
|
file: state=absent path=/opt/zsh/zsh-syntax-highlighting
|
|
|
|
when: zsh_opt_config
|
|
|
|
|
|
|
|
- name: Remove extra user config
|
|
|
|
when: "'extra' in setup"
|
|
|
|
tags: [extra]
|
|
|
|
block:
|
|
|
|
- name: Remove .aliases
|
2022-03-24 15:18:47 +00:00
|
|
|
file: state=absent path={{ home }}/.aliases
|
2022-03-23 01:03:04 +00:00
|
|
|
- name: Remove .bat.conf
|
2022-03-24 15:18:47 +00:00
|
|
|
file: state=absent path={{ home }}/.bat.conf
|
2022-03-23 01:03:04 +00:00
|
|
|
- name: Remove .env file
|
2022-03-24 15:18:47 +00:00
|
|
|
file: state=absent path={{ home }}/.env
|