toansible: Add zsh installation

This commit is contained in:
flyingscorpio@clevo 2022-02-22 12:53:54 +01:00
parent ca00813d65
commit 7e04f656eb
7 changed files with 40 additions and 32 deletions

View file

@ -278,38 +278,6 @@ java:
- install:
- jdk-openjdk
zsh:
- install:
arch:
- zsh-theme-powerlevel10k
debian:
- zsh-theme-powerlevel9k
both:
- zsh
- zsh-completions
- zsh-autosuggestions
- zsh-syntax-highlighting
- run:
- content='. "$HOME"/setup-cockpit/dotfiles/zsh/zshrc'; grep "$content" "$HOME"/.zshrc >/dev/null 2>&1 || echo "$content" >> "$HOME"/.zshrc
- run:
- content='. "$HOME"/setup-cockpit/dotfiles/zsh/zshenv'; grep "$content" "$HOME"/.zshenv >/dev/null 2>&1 || echo "$content" >> "$HOME"/.zshenv
- run:
- content='. "$HOME"/setup-cockpit/dotfiles/zsh/zprofile'; grep "$content" "$HOME"/.zprofile >/dev/null 2>&1 || echo "$content" >> "$HOME"/.zprofile
- run:
- content='. "$HOME"/setup-cockpit/dotfiles/zsh/p10k.zsh'; grep "$content" "$HOME"/.p10k.zsh >/dev/null 2>&1 || echo "$content" >> "$HOME"/.p10k.zsh
- clone:
url: https://github.com/softmoth/zsh-vim-mode.git
dest: ~/.git_clones/zsh-vim-mode
branch: main
- clone:
url: https://github.com/zsh-users/zsh-autosuggestions.git
dest: ~/.git_clones/zsh-autosuggestions
branch: master
- clone:
url: https://github.com/zsh-users/zsh-syntax-highlighting.git
dest: ~/.git_clones/zsh-syntax-highlighting
branch: master
pacman_hooks:
- run:
- sudo mkdir -p /etc/pacman.d/hooks

View file

@ -6,6 +6,8 @@
tags: base
- role: bash
tags: bash
- role: zsh
tags: zsh
- role: kitty
tags: kitty
- role: terminator

38
roles/zsh/tasks/main.yml Normal file
View file

@ -0,0 +1,38 @@
---
- name: Install bash-completion (Archlinux)
become: true
pacman:
name:
- zsh-theme-powerlevel10k
- zsh
- zsh-completions
- zsh-autosuggestions
- zsh-syntax-highlighting
when: ansible_distribution == 'Archlinux'
- name: Install bash-completion (Debian)
become: true
apt:
name:
- zsh-theme-powerlevel9k
- zsh
- zsh-completions
- zsh-autosuggestions
- zsh-syntax-highlighting
when: ansible_distribution == 'Debian'
- name: Copy files
copy: src={{ item.src }} dest={{ item.dest }} backup=true
with_items:
- { src: 'zshrc', dest: '~/.zshrc' }
- { src: 'zshenv', dest: '~/.zshenv' }
- { src: 'zprofile', dest: '~/.zprofile' }
- { src: 'p10k.zsh', dest: '~/.p10k.zsh' }
- name: Clone repos
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes version={{ item.version }}
with_items:
- { repo: 'https://github.com/softmoth/zsh-vim-mode.git', dest: '~/.git_clones/zsh-vim-mode', version: 'main' }
- { repo: 'https://github.com/zsh-users/zsh-autosuggestions.git', dest: '~/.git_clones/zsh-autosuggestions', version: 'master' }
- { repo: 'https://github.com/zsh-users/zsh-syntax-highlighting.git', dest: '~/.git_clones/zsh-syntax-highlighting', version: 'master' }