24 lines
440 B
YAML
24 lines
440 B
YAML
---
|
|
# tasks file for ericomeehan.ericomeehan
|
|
- name: Install user environment packages
|
|
apt:
|
|
name:
|
|
- zplug
|
|
- zsh
|
|
state: present
|
|
|
|
- name: Set default shell to zsh
|
|
user:
|
|
name: eric
|
|
shell: /bin/zsh
|
|
|
|
- name: Copy zsh configuration
|
|
copy:
|
|
src: zshrc
|
|
dest: /home/eric/.zshrc
|
|
|
|
- name: Install custom zsh prompt
|
|
copy:
|
|
src: prompt_eric_setup
|
|
dest: /usr/share/zsh/functions/Prompts/prompt_eric_setup
|