-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashrc
More file actions
27 lines (21 loc) · 661 Bytes
/
bashrc
File metadata and controls
27 lines (21 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
alias v='gvim -v'
alias ..='cd ..'
alias win='cd /mnt/sda2/'
alias windocs='cd /mnt/win1/Documents\ and\ Settings/Christine/Documents'
alias cfxstart='cd ~/addon-dev/addon-sdk-1.10; source bin/activate ; cd -'
joinpdf(){
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=finished.pdf $@ ;
}
# Colours
LS_COLORS='ow=1;34' ; export LS_COLORS
# Android ADB
export PATH=$PATH:/home/ctcyu/android-sdk-linux/platform-tools/
export TERM="xterm-256color"
#source ~/nvm/nvm.sh
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting