blob: 4103663044af6ea1e6e48ab3bca51a18215f6f9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
- name: Install shell items
block:
- name: Setup ZSH
ansible.builtin.dnf:
name: "zsh"
state: latest
- name: Setup oh-my-zsh
become: true
become_user: aaditya
ansible.builtin.shell: 'sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended'
ignore_errors: true
- name: Setup zsh-autosuggestions
become: true
become_user: aaditya
ansible.builtin.shell: 'git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions'
ignore_errors: true
- name: Setup zsh-syntax-highlighting
become: true
become_user: aaditya
ansible.builtin.shell: 'git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting'
ignore_errors: true
- name: Setup powerlevel10k
become: true
become_user: aaditya
ansible.builtin.shell: 'git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k'
ignore_errors: true
- name: Setup p10k, tmux and zshrc
ansible.builtin.copy:
src: shell/{{ item }}
dest: "/home/{{ config.username }}"
backup: yes
loop:
- .p10k.zsh
- .zshrc
- .tmux.conf
- name: Setup vimrc and vim bundles
ansible.builtin.copy:
src: shell/{{ item }}
dest: "/home/{{ config.username }}"
backup: yes
loop:
- .vimrc
- name: Setup vundle
become: true
become_user: {{ config.username }}
ansible.builtin.shell: 'git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim && vim +PluginInstall +qall'
ignore_errors: true
- name: Install autoload in right directory
become: true
become_user: {{ config.username }}
ansible.builtin.copy:
src: "/home/{{ config.username }}/.vim/bundle/gruvbox-material/autoload/gruvbox_material.vim"
dest: "/home/{{ config.username }}/.vim/autoload/"
ignore_errors: true
- name: Install colors in right directory
become: true
become_user: {{ config.username }}
ansible.builtin.copy:
src: "/home/{{ config.username }}/.vim/bundle/gruvbox-material/colors/gruvbox-material.vim"
dest: "/home/{{ config.username }}/.vim/colors/"
ignore_errors: true
- name: Setup vim/neovim directories
become: true
become_user: {{ config.username }}
ansible.builtin.copy:
src: "{{ item }}"
dest: "/home/{{ config.username }}/.config"
backup: yes
loop:
- nvim
when: 'config.config.install_shell'
- name: Install Dotfiles (Wayland)
ansible.builtin.copy:
src: "{{ item }}"
dest: "/home/{{ config.username }}/.config/"
backup: yes
loop: "{{ config_wayland }}"
when: 'config.config.install_wayland'
- name: Install Dotfiles (Xorg)
ansible.builtin.copy:
src: "{{ item }}"
dest: "/home/{{ config.username }}/.config/"
backup: yes
loop: "{{ config_xorg }}"
when: 'config.config.install_xorg'
- name: Install Dotfiles (All)
ansible.builtin.copy:
src: "{{ item }}"
dest: "/home/{{ config.username }}/.config/"
backup: yes
loop: "{{ config_all }}"
when: "config.config.install_xorg or config.config.install_wayland"
|