47 lines
984 B
Django/Jinja
47 lines
984 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/apps/go
|
|
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
|
|
|
|
|
|
# Rust settings
|
|
export PATH=$PATH:$HOME/.cargo/bin
|
|
|
|
|
|
# Android settings
|
|
export ANDROID_HOME=~/Android
|
|
|
|
|
|
# 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 ansible command-not-found systemd python golang nmap zsh-autosuggestions)
|
|
|
|
#for example
|
|
#plugins=(common-aliases sudo docker salt git ansible command-not-found virtualenvwrapper tmux systemd python golang nmap)
|
|
|
|
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
|