35 lines
664 B
Django/Jinja
35 lines
664 B
Django/Jinja
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
|
|
|
|
# Main environments variables
|
|
export EDITOR=vim
|
|
export JAVA_OPTS='-XX:+IgnoreUnrecognizedVMOptions --add-modules java.se.ee'
|
|
|
|
|
|
# Golang settings
|
|
export GOPATH=~/go
|
|
export GOROOT=/usr/local/go
|
|
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
|
|
|
|
|
|
# Oh my ZSH settings
|
|
export ZSH=/usr/share/oh-my-zsh
|
|
ZSH_THEME="jreese"
|
|
DISABLE_AUTO_UPDATE="true"
|
|
plugins=(common-aliases sudo docker salt git)
|
|
|
|
if [[ -f $ZSH/oh-my-zsh.sh ]]
|
|
then
|
|
source $ZSH/oh-my-zsh.sh
|
|
fi
|
|
|
|
|
|
# Acme settings
|
|
if [[ -f /root/.acme.sh/acme.sh.env ]]
|
|
then
|
|
. /root/.acme.sh/acme.sh.env
|
|
fi
|
|
|
|
|
|
# Misc settings
|
|
bindkey -e
|
|
unsetopt share_history |