1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-02 19:53:23 -07:00
rc/shrc.zsh

54 lines
1.8 KiB
Bash

# for both zsh and bash
umask 027 # screw others
export PATH="$PATH:$HOME/opt/local/bin"
export PATH="$PATH:$HOME/opt/mingw-w64/bin"
export PREFIX="$HOME/opt/local"
export CC=clang
export CFLAGS='-march=native -O2'
export LDFLAGS='-Wl,-O1,--sort-common,-z,relro'
export CFLAGS="$CFLAGS -I'$HOME/opt/local/include'"
export LDFLAGS="$LDFLAGS -L'$HOME/opt/local/lib'"
export LD_LIBRARY_PATH= # -n isn't an option in zsh's export
export EDITOR='vim -p'
export GOPATH="$HOME/go"
# colors
for x in ls dir vdir grep fgrep egrep; do
alias $x="$x --color=auto"
done
alias make="colormake"
# just flags
export LESS='-SR'
alias fils="du -bad1"
alias lsfm="lsf -ugpms"
alias lsa="ls -A --group-directories-first"
alias logs="logs -o cat -b -e"
alias logsf="logs -f"
alias diff="git --no-pager diff --color=auto --no-ext-diff --no-index"
# being specific
alias erc="e ~/.zshrc ~/shrc.zsh ~/.bashrc"
alias irc="screen -dR irc irssi"
alias crawl='screen -dR crawl ssh crawl@crawl.develz.org -i ~/.ssh/crawl'
alias crawla='screen -dR crawl ssh crawl@crawl.akrasiac.org -l joshua -i ~/.ssh/crawl'
alias cmakem="cmake -G \"Unix Makefiles\" -DCMAKE_TOOLCHAIN_FILE=~/mingw.cmake"
# providing extra functionality
# TODO: dotfiles first, like `LC_ALL=C ls -A` which doesnt work with -X flag
alias ll="ls -ACX --group-directories-first --color=force | less"
alias counts='find . | wc -l'
alias exts='print -l *(:e:l) | sort | uniq -c | sort -n'
alias meow='( cd ~/play/meow; ~/sh/meow.sh/run -pa )'
alias nocom='grep -oP --line-buffered --color=never "^[^#]+"'
alias unwrap='awk '"'"'BEGIN{RS="\n\n";FS="\n"}{for(i=1;i<=NF;i++)printf "%s ",$i;print "\n"}'"'"
alias picky='{ pacman -Qgq base base-devel; pacman -Qtq; } | sort | uniq -u'
alias unused='{ pacman -Qt; pacman -Qe | tee -; } | sort | uniq -u'
. ~/sh/lsf.sh/lsf.sh
. ~/sh/z/z.sh