Feat: update zsh config

This commit is contained in:
2021-06-15 10:33:52 +02:00
parent be522bbf36
commit 7ca8ed574f
6 changed files with 192 additions and 109 deletions

View File

@@ -1,4 +1,13 @@
---
- name: dotfiles -- Copying Xdefaults
template:
src: files/dotfiles/Xdefaults
dest: /home/{{ item.username }}/.Xdefaults
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
# Tmux
- name: dotfiles -- Copy tmux.conf
template:
src: files/dotfiles/tmux.conf
@@ -7,51 +16,63 @@
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
# Zsh config
- name: dotfiles -- Download antibody
get_url:
url: https://raw.githubusercontent.com/getantibody/installer/master/install
dest: /tmp/antibody.sh
mode: 0770
when: prompt == "zsh"
- name: dotfiles -- Execute the antibody.sh
shell: /tmp/antibody.sh
become: yes
ignore_errors: yes
when: prompt == "zsh"
- name: dotfiles -- Remove the antibody.sh
file: path=/tmp/antibody.sh state=absent
when: prompt == "zsh"
# ZSH
- name: dotiles -- create .config/zsh directory
file:
path: /home/{{ item.username }}/.config/zsh/
state: directory
mode: '0755'
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotfiles -- Copy local zshrc
template:
src: files/dotfiles/zshrc
dest: /home/{{ item.username }}/.zshrc
dest: /home/{{ item.username }}/.config/zsh/.zshrc
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotfiles -- Copy local zshrc.local
- name: dotfiles -- Copy local zshenv
template:
src: files/dotfiles/zshrc.local
dest: /home/{{ item.username }}/.zshrc.local
src: files/dotfiles/zshenv
dest: /home/{{ item.username }}/.zshenv
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotfiles -- Copy local zsh_plugins.txt
template:
src: files/dotfiles/zsh_plugins.txt
dest: /home/{{ item.username }}/.zsh_plugins.txt
owner: "{{ item.username }}"
group: "{{ item.group }}"
- name: dotiles -- clone zsh syntax-hightlighting
git:
repo: https://github.com/zsh-users/zsh-syntax-highlighting.git
dest: /home/{{ item.username }}/.config/zsh/zsh-syntax-highlighting
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotiles -- clone zsh autosuggestions
git:
repo: https://github.com/zsh-users/zsh-autosuggestions.git
dest: /home/{{ item.username }}/.config/zsh/zsh-autosuggestions
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotiles -- clone zsh auto-ls
git:
repo: https://github.com/desyncr/auto-ls
dest: /home/{{ item.username }}/.config/zsh/auto-ls
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotiles -- clone zsh pure prompt
git:
repo: https://github.com/sindresorhus/pure.git
dest: /home/{{ item.username }}/.config/zsh/pure
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
# Fish config
- name: dotfiles -- Create fish config directory
file:
@@ -131,6 +152,15 @@
with_items: "{{ dotusers }}"
when: editor == 'nvim'
# coc snippets
- name: dotfiles -- Copying snippets
copy:
src: files/dotfiles/ultisnips/
dest: /home/{{ item.username }}/.config/coc/ultisnips
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
# Alacritty terminal
- name: dotfiles -- Copy alacritty config
copy:
@@ -168,12 +198,3 @@
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
when: not server
# coc snippets
- name: dotfiles -- Copying snippets
copy:
src: files/dotfiles/ultisnips/
dest: /home/{{ item.username }}/.config/coc/ultisnips
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"

View File

@@ -1,20 +1,9 @@
---
# - name: download default grml configuration
# get_url:
# url: http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
# dest: /etc/zsh/newuser.zshrc.recommended
# backup: yes
#
# - name: download default grml configuration
# get_url:
# url: http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
# dest: /etc/zsh/zshrc
# force: yes
# backup: yes
- name: Install base CLI packages
pacman:
name: zsh
name:
- zsh
- grml-zsh-config
state: present
- name: Set shell for root to zsh
@@ -24,3 +13,58 @@
tags:
- first_deployement
# ZSH dotfiles
- name: dotiles -- create .config/zsh directory
file:
path: /home/{{ item.username }}/.config/zsh/
state: directory
mode: '0755'
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotfiles -- Copy local zshrc
template:
src: files/dotfiles/zshrc
dest: /home/{{ item.username }}/.config/zsh/.zshrc
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotfiles -- Copy local zshenv
template:
src: files/dotfiles/zshenv
dest: /home/{{ item.username }}/.zshenv
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotiles -- clone zsh syntax-hightlighting
git:
repo: https://github.com/zsh-users/zsh-syntax-highlighting.git
dest: /home/{{ item.username }}/.config/zsh/zsh-syntax-highlighting
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotiles -- clone zsh autosuggestions
git:
repo: https://github.com/zsh-users/zsh-autosuggestions.git
dest: /home/{{ item.username }}/.config/zsh/zsh-autosuggestions
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotiles -- clone zsh auto-ls
git:
repo: https://github.com/desyncr/auto-ls
dest: /home/{{ item.username }}/.config/zsh/auto-ls
with_items: "{{ dotusers }}"
when: prompt == 'zsh'
- name: dotiles -- clone zsh pure prompt
git:
repo: https://github.com/sindresorhus/pure.git
dest: /home/{{ item.username }}/.config/zsh/pure
with_items: "{{ dotusers }}"
when: prompt == 'zsh'