diff --git a/.kshrc b/.kshrc index 8ef22d1..04cff58 100644 --- a/.kshrc +++ b/.kshrc @@ -17,6 +17,7 @@ PATH=~/.bin\ export PATH ### LANGUAGE +LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LC_MESSAGES=C LC_NUMERIC=C diff --git a/.vim/vimrc b/.vim/vimrc index 7f4f6ac..0b98406 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -197,8 +197,8 @@ if has("cscope") cs add cscope.out elseif filereadable(".git/cscope.out") cs add .git/cscope.out - elseif filereadable("/priv/d034266/git/CGK/src/.git/cscope.out") - cs add /priv/d034266/git/CGK/src/.git/cscope.out + elseif filereadable($CSCOPEDB) + cs add $CSCOPEDB endif " 'ts' symbol: find all references to the token under cursor " 'tg' global: find global definition(s) of the token under cursor