# /etc/skel/.bashrc # # This file is sourced by all *interactive* bash shells on startup, # including some apparently interactive shells such as scp and rcp # that can't tolerate any output. So make sure this doesn't display # anything or bad things will happen ! # Test for an interactive shell. There is no need to set anything # past this point for scp and rcp, and it's important to refrain # from outputting anything in those cases. if [[ $- != *i* ]] ; then # Shell is non-interactive. Be done now! return fi # Put your fun stuff here. export GOPATH=$HOME/wdtan/coding/go export PATH=$PATH:$HOME/go/bin:$GOPATH/bin export PATH=$PATH:$HOME/bin export PATH=$PATH:$HOME/scripts export LFS=/mnt/lfs export WINEROOT=$HOME/winep export LYNX_LSS="$HOME/lynx.lss" export LYNX_CFG="$HOME/lynx.cfg" export XIM_PROGRAM="ibus-daemon" export XIM=ibus export XIM_ARGS="-dx" export GTK_IM_MODULE=ibus export QT_IM_MODULE=ibus export XMODIFIERS=@im=ibus # turn on 256 color support if [ -e /usr/share/terminfo/x/xterm-256color ]; then export TERM='xterm-256color' else export TERM='xterm-color' fi alias convmv-jp="convmv -f cp932 -t utf8 -r --notest" alias sxiv="sxiv -a"