paulbsd-salt/states/zsh/templates/zshenv.j2

88 lines
1.9 KiB
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
2021-09-25 16:03:39 +02:00
{%- from "zsh/map.jinja" import zsh with context %}
2020-07-10 00:58:55 +02:00
2023-01-04 23:36:02 +01:00
if [[ $PATH != *"/usr/local/bin:/usr/local/sbin"* ]]
then
export PATH=$PATH:/usr/local/bin:/usr/local/sbin
fi
2022-05-14 11:22:52 +02:00
2020-07-10 00:58:55 +02:00
# Main environments variables
2022-10-23 16:38:38 +02:00
export EDITOR=nvim
2024-04-07 11:30:04 +02:00
#export JAVA_OPTS='-XX:+IgnoreUnrecognizedVMOptions --add-modules java.se.ee'
2020-07-10 00:58:55 +02:00
2021-09-25 16:03:39 +02:00
{% if zsh.config.golang -%}
2020-07-10 00:58:55 +02:00
# Golang settings
2023-01-04 23:36:02 +01:00
if [[ -d /usr/local/apps/golang && $PATH != *"golang"* ]]
2021-04-07 12:48:50 +02:00
then
export GOPATH=~/go
2022-01-25 00:19:41 +01:00
export GOROOT=/usr/local/apps/golang
2022-12-06 20:27:14 +01:00
export GO111MODULE=auto
2021-04-07 12:48:50 +02:00
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
fi
2021-09-25 16:03:39 +02:00
{%- endif %}
2020-07-10 00:58:55 +02:00
2021-09-25 16:03:39 +02:00
{% if zsh.config.rust -%}
2020-07-30 14:10:22 +02:00
# Rust settings
2023-01-04 23:36:02 +01:00
if [[ -d ~/.cargo/bin && $PATH != *"cargo"* ]]
2021-04-07 12:48:50 +02:00
then
export PATH=$PATH:$HOME/.cargo/bin
fi
2021-09-25 16:03:39 +02:00
{%- endif %}
2020-07-30 14:10:22 +02:00
2023-04-13 23:13:50 +02:00
{% if zsh.config.haproxy -%}
alias hap="hatop -t 127.0.0.1:9990"
{%- endif %}
2021-09-25 16:03:39 +02:00
{% if zsh.config.android -%}
2020-12-26 17:42:09 +01:00
# Android settings
2021-04-07 12:48:50 +02:00
if [[ -d ~/Android ]]
then
2021-07-03 16:02:44 +02:00
export ANDROID_SDK_ROOT=~/Android
2021-04-07 12:48:50 +02:00
fi
2021-09-25 16:03:39 +02:00
{%- endif %}
2020-12-26 17:42:09 +01:00
2020-07-10 00:58:55 +02:00
# Oh my ZSH settings
export ZSH=/usr/share/oh-my-zsh
ZSH_THEME="jreese"
DISABLE_AUTO_UPDATE="true"
2024-05-01 08:59:28 +02:00
2022-12-06 20:27:14 +01:00
plugins=(common-aliases git)
2024-05-01 08:59:28 +02:00
{%- if zsh.config.full %}
plugins+=(common-aliases sudo docker git ansible command-not-found systemd python nmap zsh-autosuggestions golang rust kubectl)
2021-09-25 16:03:39 +02:00
{%- endif %}
2020-10-25 16:38:21 +01:00
2024-05-01 08:59:28 +02:00
{%- if zsh.config.sshagent %}
plugins+=(ssh-agent)
{% endif %}
2020-07-10 00:58:55 +02:00
if [[ -f $ZSH/oh-my-zsh.sh ]]
then
source $ZSH/oh-my-zsh.sh
fi
2022-12-17 23:35:26 +01:00
# Regionals
{% set locale = salt['pillar.get']('locale')|default('en_US.UTF-8') %}
export LANG={{ locale }}
export LC_ADDRESS={{ locale }}
export LC_IDENTIFICATION={{ locale }}
export LC_MEASUREMENT={{ locale }}
export LC_MONETARY={{ locale }}
export LC_NAME={{ locale }}
export LC_NUMERIC={{ locale }}
export LC_PAPER={{ locale }}
export LC_TELEPHONE={{ locale }}
export LC_TIME={{ locale }}
# Neovim aliases
for i in v vi vim
do
alias $i=nvim
done
2022-05-14 11:22:52 +02:00
alias weather="curl -s wttr.in/caen"
2024-02-19 21:21:34 +01:00
alias mysql="mariadb"
2020-07-10 00:58:55 +02:00
# Misc settings
bindkey -e
2022-12-17 23:35:26 +01:00
unsetopt share_history