mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-23 19:09:55 +01:00
Compare commits
No commits in common. "b438c90574bdbf0bb28fb69ce15062387feb90aa" and "3a2aee76817cedeb0291d9b75082c4d8bb6ac943" have entirely different histories.
b438c90574
...
3a2aee7681
@ -18,7 +18,7 @@ fi
|
|||||||
|
|
||||||
# Better lsd
|
# Better lsd
|
||||||
if [[ -x `which lsd` ]]; then
|
if [[ -x `which lsd` ]]; then
|
||||||
alias lsd='pwd; lsd -laF --group-dirs=first --icon=never'
|
alias lsd='pwd; lsd -laF --group-dirs=first --icon=never'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Update aliases
|
# Update aliases
|
||||||
|
41
zsh/env
41
zsh/env
@ -2,30 +2,30 @@
|
|||||||
# filename: /zsh/env
|
# filename: /zsh/env
|
||||||
#--------------------------------
|
#--------------------------------
|
||||||
|
|
||||||
|
# set default editor
|
||||||
|
export EDITOR="nano"
|
||||||
|
|
||||||
|
# set `ll` command - b(etter)ls per default
|
||||||
|
alias ll=bls
|
||||||
|
if [[ -x `which /usr/local/bin/exa` || -x `which /opt/homebrew/bin/exa` ]]; then
|
||||||
|
alias ll=exa
|
||||||
|
fi
|
||||||
|
if [[ -x `which /usr/local/bin/lsd` || -x `which /opt/homebrew/bin/lsd` ]]; then
|
||||||
|
alias ll=lsd
|
||||||
|
fi
|
||||||
|
|
||||||
# set language
|
# set language
|
||||||
export LANGUAGE=en_US.UTF-8
|
export LANGUAGE=en_US.UTF-8
|
||||||
export LC_ALL=en_US.UTF-8
|
export LC_ALL=en_US.UTF-8
|
||||||
export LANG=en_US.UTF-8
|
export LANG=en_US.UTF-8
|
||||||
export LC_TYPE=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
|
# Path additions
|
||||||
#
|
#
|
||||||
|
|
||||||
if test -d "/opt/homebrew/"; then
|
if test -d "/opt/homebrew/"; then
|
||||||
export PATH="/opt/homebrew/bin:$PATH"
|
export PATH="/opt/homebrew/bin/:$PATH"
|
||||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -60,16 +60,21 @@ if [[ $platform == 'macOS' ]]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -d "$homebrew_opt/openjdk/bin/"; then
|
if test -d "/opt/homebrew/opt/openjdk/bin"; then
|
||||||
export PATH="$homebrew_opt/openjdk/bin:$PATH"
|
export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"
|
||||||
|
fi
|
||||||
|
if test -d "/usr/local/opt/java/bin/"; then
|
||||||
|
export PATH="/usr/local/opt/java/bin/:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -d "$homebrew_opt/ruby"; then
|
/usr/local/opt/java/bin/
|
||||||
export PATH="$homebrew_opt/ruby/bin:$PATH"
|
|
||||||
|
if test -d "/usr/local/opt/ruby"; then
|
||||||
|
export PATH="/usr/local/opt/ruby/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -d "/usr/local/sbin"; then
|
if test -d "/usr/local/sbin"; then
|
||||||
export PATH="/usr/local/sbin:$PATH"
|
export PATH="/usr/local/sbin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
|
12
zshrc
12
zshrc
@ -19,8 +19,6 @@ if [[ $(uname) == 'Linux' ]]; then
|
|||||||
elif [[ $(uname) == 'Darwin' ]]; then
|
elif [[ $(uname) == 'Darwin' ]]; then
|
||||||
platform='macOS'
|
platform='macOS'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Define CPU architecture
|
|
||||||
arch='Unknown'
|
arch='Unknown'
|
||||||
if [[ $(uname -p) == 'arm' ]]; then
|
if [[ $(uname -p) == 'arm' ]]; then
|
||||||
arch="arm"
|
arch="arm"
|
||||||
@ -30,16 +28,6 @@ elif [[ $(uname -p) == 'x86_64' ]]; then
|
|||||||
arch="x86_64"
|
arch="x86_64"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Homebrew
|
|
||||||
homebrew_path=""
|
|
||||||
if test -f "/opt/homebrew/bin/brew"; then
|
|
||||||
homebrew_path="/opt/homebrew/bin"
|
|
||||||
homebrew_opt="/opt/homebrew/opt"
|
|
||||||
elif test -f "/usr/local/bin/brew"; then
|
|
||||||
homebrew_path="/usr/local/bin"
|
|
||||||
homebrew_opt="/usr/local/opt"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Load additional settings
|
# Load additional settings
|
||||||
source $HOME/.dotfiles/zsh/env
|
source $HOME/.dotfiles/zsh/env
|
||||||
source $HOME/.dotfiles/zsh/alias
|
source $HOME/.dotfiles/zsh/alias
|
||||||
|
Loading…
Reference in New Issue
Block a user