1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-09-28 15:01:24 +02:00

fixed zsh-auto-syntax

This commit is contained in:
eoli3n 2017-12-22 19:10:14 +01:00
parent b0bf878b7a
commit faac4524ae

@ -14,6 +14,15 @@
become: True
when: ansible_distribution == "Debian"
- name: Install zsh [Debian]
apt: name={{item}} state=present
with_items:
- zsh
- most
- zsh-syntax-highlighting
become: True
when: ansible_distribution == "Debian"
- name: Configure zsh-syntax-highlighting repo [CentOS]
shell: creates=/etc/yum.repos.d/shells:zsh-users:zsh-syntax-highlighting.repo cd /etc/yum.repos.d/; wget https://download.opensuse.org/repositories/shells:zsh-users:zsh-syntax-highlighting/CentOS_7/shells:zsh-users:zsh-syntax-highlighting.repo
become: True
@ -26,6 +35,7 @@
- most
- zsh-syntax-highlighting
become: True
when: ansible_distribution != "Debian"
- name: Install oh-my-zsh
shell: creates=~/.oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"