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.

18 lines
804 B

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