mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-22 10:39:57 +01:00
Compare commits
No commits in common. "ff8d4a638d7cd7151e461404c59bb88445b63aae" and "f623cf394253b8f3f61aa3b70d63e3015644e63f" have entirely different histories.
ff8d4a638d
...
f623cf3942
@ -13,8 +13,7 @@ fi
|
||||
|
||||
# Better exa
|
||||
if [[ -x $(which exa) ]]; then
|
||||
alias exa='pwd; exa --long --all --all --group-directories-first --git --group'
|
||||
# --all (2x) to show `.` and `..` directories as well
|
||||
alias exa='pwd; exa -la --group-directories-first --git -g'
|
||||
fi
|
||||
|
||||
# Better lsd
|
||||
|
22
zsh/env
22
zsh/env
@ -49,13 +49,14 @@ fi
|
||||
|
||||
# Add syncthing synced binary folder to $PATH
|
||||
if [[ $platform == 'macOS' ]]; then
|
||||
export PATH="$HOME/SyncMac/Apps/bin/universal:$PATH"
|
||||
export PATH="$HOME/SyncMac/Apps/bin/x86_64_rosetta2:$PATH"
|
||||
|
||||
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
|
||||
|
||||
@ -79,10 +80,11 @@ fi
|
||||
# evals
|
||||
#
|
||||
|
||||
# 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
|
||||
}
|
||||
fi
|
||||
# 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
|
||||
|
6
zshrc
6
zshrc
@ -57,3 +57,9 @@ if [[ -d $HOME/.jan ]]; then
|
||||
source "$HOME/.jan/credentials"
|
||||
source "$HOME/.jan/zsh_options"
|
||||
fi
|
||||
|
||||
PATH="/Users/jan/perl5/bin${PATH:+:${PATH}}"; export PATH;
|
||||
PERL5LIB="/Users/jan/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
|
||||
PERL_LOCAL_LIB_ROOT="/Users/jan/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
|
||||
PERL_MB_OPT="--install_base \"/Users/jan/perl5\""; export PERL_MB_OPT;
|
||||
PERL_MM_OPT="INSTALL_BASE=/Users/jan/perl5"; export PERL_MM_OPT;
|
||||
|
Loading…
Reference in New Issue
Block a user