You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
742 B

# 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"