32 lines
638 B
YAML
32 lines
638 B
YAML
---
|
|
# tasks file for install_rc_file
|
|
|
|
- name: Install p10k
|
|
ansible.builtin.git:
|
|
repo: https://gitee.com/romkatv/powerlevel10k.git
|
|
dest: /root/.oh-my-zsh/custom/themes/powerlevel10k
|
|
depth: 1
|
|
|
|
- name: Install .zshrc
|
|
ansible.builtin.copy:
|
|
src: .zshrc
|
|
dest: /root/.zshrc
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r
|
|
|
|
- name: Install .p10k.zsh
|
|
ansible.builtin.copy:
|
|
src: .p10k.zsh
|
|
dest: /root/.p10k.zsh
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r
|
|
|
|
- name: Install .vimrc
|
|
ansible.builtin.copy:
|
|
src: .vimrc
|
|
dest: /root/.vimrc
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r |