# don't load default zshrc setopt no_global_rcs # environment variables export PATH=/home/marc/.config/scripts:/home/marc/.local/bin:$PATH:$HOME/.cache/npm-packages/bin # aliases # to temporary disable them in case they override defaults, # use \.. , e.g. \ls # to see what the alias means, use type [alias] alias ls="ls -lah --color" alias dot='/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME' alias mvmkv='find . -name "*.mkv" -type f -exec mv {} ./ \;' alias wget='wget --hsts-file=$XDG_CACHE_HOME/wget-hsts' alias mbsync='mbsync -c $XDG_CONFIG_HOME/isync/mbsyncrc' alias flactomp3='find . -name "*.flac" -exec ffmpeg -i {} -codec:a libmp3lame -q:a 0 -map_metadata 0 -id3v2_version 3 -c:v copy {}.mp3 \;' alias dmesg="dmesg -T" alias yarn='yarn --use-yarnrc "$XDG_CONFIG_HOME/yarn/config"' alias nvidia-settings='nvidia-settings --config="$XDG_CONFIG_HOME"/nvidia/settings'