blob: 0d75673d769b0ed784abad87de9347d2b99405e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Colour ls output
alias ls='ls --color=auto'
# Nano options
alias nano='nano --nowrap -ET4'
# Grep coloured output
alias grep='grep --colour=auto'
# Feh with stupid auto zoom
alias feh='feh -Z'
# chromium for jamming
alias chromjam='chromium --alsa-output-device=hw:0,0'
# managing dotfiles
alias cfg='git --git-dir=.dotfiles --work-tree=.'
|