1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-11-23 07:21:58 +01:00
eoli3n-dotfiles/roles/zsh
2017-12-29 03:22:11 +01:00
..
tasks fixed zsh install 2017-12-29 03:22:11 +01:00
templates by_host and by_os dirs 2017-12-28 19:25:01 +01:00
README.md by_host and by_os dirs 2017-12-28 19:25:01 +01:00

By hostname specific configuration in zshrc

Add a dir named as hostname in by_host dir to include specific host configuration in config file

mkdir templates/by_host/$(hostname)
echo << EOF > templates/by_host/$(hostname)/zshrc.j2
# Alias to include for $(hostname)
alias foo=bar
EOF

By OS specific configuration in zshrc

Add a dir named as hostname in by_host dir to include specific host configuration in config file

mkdir templates/by_os/<archlinux|debian|centos>
echo << EOF > templates/by_os/<archlinux|debian|centos>/zshrc.j2
# Alias to include for <archlinux|debian|centos>
alias foo2=bar2
EOF