.dotfiles/zsh/env

111 lines
2.6 KiB
Plaintext
Raw Normal View History

2022-02-10 20:11:56 +01:00
#--------------------------------
# filename: /zsh/env
#--------------------------------
2022-02-20 17:38:32 +01:00
# 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
2022-02-10 20:11:56 +01:00
# set default editor
export EDITOR="nano"
#
# Path additions
#
2024-08-11 00:26:27 +02:00
if test -d "$HOME/.dotfiles/scripts"; then
export PATH="$HOME/.dotfiles/scripts:$PATH"
fi
2022-02-10 20:11:56 +01:00
if test -d "/opt/homebrew/"; then
2022-02-20 17:40:01 +01:00
export PATH="/opt/homebrew/bin:$PATH"
2024-08-12 08:41:23 +02:00
eval "$($(which brew) shellenv)"
2022-02-10 20:11:56 +01:00
fi
2024-06-17 21:13:49 +02:00
if test -d "/home/linuxbrew/.linuxbrew/"; then
export PATH="/home/linuxbrew/.linuxbrew/bin/:$PATH"
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
2022-02-10 20:11:56 +01:00
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
2023-09-04 03:45:54 +02:00
export PATH="$HOME/SyncMac/Apps/bin/universal:$PATH"
export PATH="$HOME/SyncMac/Apps/bin/x86_64_rosetta2:$PATH"
2022-02-10 20:11:56 +01:00
if [[ $arch == 'arm' ]]; then
export PATH="$HOME/SyncMac/Apps/bin/arm64:$PATH"
elif [[ $arch == 'i386' ]]; then
export PATH="$HOME/SyncMac/Apps/bin/x86_64:$PATH"
fi
fi
2022-02-20 17:39:39 +01:00
if test -d "$homebrew_opt/openjdk/bin/"; then
export PATH="$homebrew_opt/openjdk/bin:$PATH"
2022-02-20 16:36:35 +01:00
fi
2022-05-02 09:43:14 +02:00
if test -d "$homebrew_opt/php@7.4"; then
export PATH="$homebrew_opt/php@7.4/bin:$PATH"
fi
2022-02-20 17:39:39 +01:00
if test -d "$homebrew_opt/ruby"; then
export PATH="$homebrew_opt/ruby/bin:$PATH"
2022-02-10 20:11:56 +01:00
fi
if test -d "/usr/local/sbin"; then
2022-02-20 17:40:01 +01:00
export PATH="/usr/local/sbin:$PATH"
2022-02-10 20:11:56 +01:00
fi
#
# evals
#
2023-09-04 04:05:57 +02:00
# Replace default `thefuck` eval with suggestion from GitHub
# https://github.com/nvbn/thefuck/issues/859
if command -v thefuck >/dev/null 2>&1; then
fuck() {
eval "$(thefuck --alias)" && fuck
}
2024-08-11 20:28:18 +02:00
fi
#
# `ll` Setup
# eza > lsd > bls
alias ll=bls
if [[ -x $(which lsd) ]]; then
alias ll=lsd
alias lsd='pwd; lsd -laF --group-dirs=first --icon=never'
fi
if [[ -x $(which eza) ]]; then
alias ll=eza
alias eza='pwd; eza --long --all --all --group-directories-first --git --group'
fi
## Better LS
if [[ $platform == 'Linux' ]]; then
alias bls='pwd; ls -lahp --color=auto --group-directories-first'
elif [[ $platform == 'macOS' && -x $(which gls) ]]; then
2024-08-11 20:35:52 +02:00
alias bls='pwd; gls -lahpG --group-directories-first --color-scale --time-style=long-iso'
2024-08-11 20:28:18 +02:00
elif [[ $platform == 'macOS' ]]; then
alias bls='pwd; /bin/ls -lahGp'
2023-09-04 04:05:57 +02:00
fi