mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-01 00:54:51 +01:00
91 lines
2.0 KiB
Plaintext
91 lines
2.0 KiB
Plaintext
#--------------------------------
|
|
# filename: /zsh/env
|
|
#--------------------------------
|
|
|
|
# set language
|
|
export LANGUAGE=en_US.UTF-8
|
|
export LC_ALL=en_US.UTF-8
|
|
export LANG=en_US.UTF-8
|
|
export LC_TYPE=en_US.UTF-8
|
|
|
|
# set default editor
|
|
export EDITOR="nano"
|
|
|
|
# set `ll` command - b(etter)ls per default
|
|
alias ll=bls
|
|
if test -f "$homebrew_path/exa"; then
|
|
alias ll=exa
|
|
fi
|
|
if test -f "$homebrew_path/lsd"; then
|
|
alias ll=lsd
|
|
fi
|
|
|
|
#
|
|
# Path additions
|
|
#
|
|
|
|
if test -d "/opt/homebrew/"; then
|
|
export PATH="/opt/homebrew/bin:$PATH"
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
fi
|
|
|
|
if test -d "$HOME/go"; then
|
|
export PATH="$HOME/go/bin:$PATH"
|
|
fi
|
|
|
|
if test -d "$HOME/.rbenv"; then
|
|
export PATH="$HOME/.rbenv/bin:$PATH"
|
|
eval "$(rbenv init -)"
|
|
fi
|
|
|
|
if test -d "$HOME/.cargo"; then
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
eval "$(rbenv init -)"
|
|
fi
|
|
|
|
if test -d "$HOME/.local"; then
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
|
|
# Add syncthing synced binary folder to $PATH
|
|
if [[ $platform == 'macOS' ]]; then
|
|
if [[ $arch == 'arm' ]]; then
|
|
export PATH="$HOME/SyncMac/Apps/bin/arm64:$PATH"
|
|
export PATH="$HOME/SyncMac/Apps/bin/universal:$PATH"
|
|
export PATH="$HOME/SyncMac/Apps/bin/x86_64_rosetta2:$PATH"
|
|
elif [[ $arch == 'i386' ]]; then
|
|
export PATH="$HOME/SyncMac/Apps/bin/universal:$PATH"
|
|
export PATH="$HOME/SyncMac/Apps/bin/x86_64:$PATH"
|
|
export PATH="$HOME/SyncMac/Apps/bin/x86_64_rosetta2:$PATH"
|
|
fi
|
|
fi
|
|
|
|
if test -d "$homebrew_opt/openjdk/bin/"; then
|
|
export PATH="$homebrew_opt/openjdk/bin:$PATH"
|
|
fi
|
|
|
|
if test -d "$homebrew_opt/php@7.4"; then
|
|
export PATH="$homebrew_opt/php@7.4/bin:$PATH"
|
|
fi
|
|
|
|
if test -d "$homebrew_opt/ruby"; then
|
|
export PATH="$homebrew_opt/ruby/bin:$PATH"
|
|
fi
|
|
|
|
if test -d "/usr/local/sbin"; then
|
|
export PATH="/usr/local/sbin:$PATH"
|
|
fi
|
|
|
|
#
|
|
# evals
|
|
#
|
|
|
|
# TheFuck
|
|
if [[ -x `which thefuck` ]]; then
|
|
eval "$(thefuck --alias)"
|
|
# You can use whatever you want as an alias, like for Mondays:
|
|
eval "$(thefuck --alias FUCK)"
|
|
|
|
alias fuck='eval $(thefuck $(fc -ln -1 | tail -n 1)); fc -R'
|
|
fi
|