-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashrc
More file actions
29 lines (21 loc) · 660 Bytes
/
bashrc
File metadata and controls
29 lines (21 loc) · 660 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
28
29
[ -z "$PS1" ] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
export EDITOR=vim
alias wine32="env WINEARCH=win32 WINEPREFIX=~/.wine32 wine"
alias winetricks32="env WINEARCH=win32 WINEPREFIX=~/.wine32 winetricks"
#export XAUTHORITY=/home/garytu/.Xauthority
xhost +SI:localuser:root > /dev/null
xhost +SI:localuser:garytu > /dev/null
export WORKON_HOME=~/.virtualenvs
source /usr/bin/virtualenvwrapper.sh
export GTK_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
export QT_IM_MODULE=ibus
export P4PORT=dpapp04.tw.ibm.com:1666
export P4CONFIG=.p4config
export P4USER=garytu
export P4DIFF="diff -u"
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi