26 lines
503 B
YAML
26 lines
503 B
YAML
- name: Install apt packages
|
|
become: true
|
|
apt:
|
|
pkg:
|
|
- zsh
|
|
- fzf
|
|
- silversearcher-ag
|
|
- xclip
|
|
- name: Install pygments
|
|
pip:
|
|
name:
|
|
- pygments
|
|
- name: Clone oh-my-zsh
|
|
git:
|
|
repo: https://github.com/ohmyzsh/ohmyzsh.git
|
|
depth: 1
|
|
dest: ~/.oh-my-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
|