#flavors of ls
alias l="ls -o -F"
alias ll="l -ll"
alias la="l -a"
alias lal="l -a -ll"

#less configuration
#full screen repaints from top line down, clear screen before repaint
#supress line numbers
#repaint screen if you want to scroll backward more than one line
#display raw control characters (useful for ll | s)
alias s="less -C -n -h1 -r"
