back to zsh

This commit is contained in:
Marvin Steadfast 2017-01-12 09:09:41 +00:00
parent d2565b3dfc
commit 92d0994aaf

View File

@ -1,3 +1,4 @@
# vim:ft=ansible
--- ---
- hosts: all - hosts: all
@ -104,12 +105,12 @@
- name: export variables - name: export variables
lineinfile: lineinfile:
dest=~/.xonshrc dest=~/.zshrc
line='{{ item }}' line='{{ item }}'
with_items: with_items:
- $PYTHONIOENCODING = 'UTF-8' - export PYTHONIOENCODING=UTF-8
- $LC_ALL = 'C.UTF-8' - export LC_ALL=C.UTF-8
- $SSL_CERT_FILE = '/etc/ssl/certs/ca-certificates.crt' - export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
- name: no git colors - name: no git colors
command: git config --global color.ui false command: git config --global color.ui false