Compare commits
No commits in common. "13c7528daeb05271af2581899a74d5fdd00114ab" and "102889bd7bb0228e3eee00dc7dc589906b518f32" have entirely different histories.
13c7528dae
...
102889bd7b
1
.vimrc
1
.vimrc
|
@ -36,6 +36,7 @@ map <F7> :cp
|
||||||
map <F8> :cn
|
map <F8> :cn
|
||||||
map! >I<yypa/O
|
map! >I<yypa/O
|
||||||
autocmd FileType perl let perl_fold=1
|
autocmd FileType perl let perl_fold=1
|
||||||
|
autocmd FileType perl let perl_fold_blocks=1
|
||||||
autocmd FileType perl syntax on
|
autocmd FileType perl syntax on
|
||||||
|
|
||||||
autocmd FileType go set sw=8
|
autocmd FileType go set sw=8
|
||||||
|
|
17
.znewterm
17
.znewterm
|
@ -23,26 +23,11 @@ then
|
||||||
stty erase
|
stty erase
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $TERM == xterm-256color && ! -f /usr/share/terminfo/x/xterm-256color && ! -f /lib/terminfo/x/xterm-256color ]]
|
if [[ $TERM == xterm-256color && ! -f /usr/share/terminfo/x/xterm-256color ]]
|
||||||
then
|
then
|
||||||
TERM=xterm
|
TERM=xterm
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $TERM == xterm ]]
|
|
||||||
then
|
|
||||||
for t in xterm-256color
|
|
||||||
do
|
|
||||||
for dir in /usr/share/terminfo/x /lib/terminfo/x/
|
|
||||||
do
|
|
||||||
if [[ -f $dir/$t ]]
|
|
||||||
then
|
|
||||||
TERM=$t
|
|
||||||
break 2
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$TERM" in
|
case "$TERM" in
|
||||||
xterm*|screen)
|
xterm*|screen)
|
||||||
# indicated exit status by smiley (suggested by Stig Sandbeck Mathisen)
|
# indicated exit status by smiley (suggested by Stig Sandbeck Mathisen)
|
||||||
|
|
4
.zshenv
4
.zshenv
|
@ -54,12 +54,13 @@ then
|
||||||
|
|
||||||
PATH=`$preppath -c /usr/bin/X11:/usr/games:/usr/contrib/bin`
|
PATH=`$preppath -c /usr/bin/X11:/usr/games:/usr/contrib/bin`
|
||||||
PATH=`$preppath -c /bin:/usr/bin`
|
PATH=`$preppath -c /bin:/usr/bin`
|
||||||
|
# Debian's open/libre office is in /usr/bin, so we need to prepend
|
||||||
|
# the current version before it:
|
||||||
PATH=`$preppath -c /usr/sbin:/sbin`
|
PATH=`$preppath -c /usr/sbin:/sbin`
|
||||||
PATH=`$preppath -c /usr/local/sbin:/usr/local/bin`
|
PATH=`$preppath -c /usr/local/sbin:/usr/local/bin`
|
||||||
`$preppath -c -e /usr/local/node-v8.9.4-linux-x86/bin`
|
`$preppath -c -e /usr/local/node-v8.9.4-linux-x86/bin`
|
||||||
`$preppath -c -e /usr/local/node-v8.9.4-linux-x64/bin`
|
`$preppath -c -e /usr/local/node-v8.9.4-linux-x64/bin`
|
||||||
`$preppath -c -e -r /usr/lib/go-1.*/bin`
|
`$preppath -c -e -r /usr/lib/go-1.*/bin`
|
||||||
`$preppath -c -e -r $HOME/go/bin`
|
|
||||||
PATH=`$preppath -c $HOME/scripts`
|
PATH=`$preppath -c $HOME/scripts`
|
||||||
PATH=`$preppath -c $HOME/bin/hosts:$HOME/bin`
|
PATH=`$preppath -c $HOME/bin/hosts:$HOME/bin`
|
||||||
|
|
||||||
|
@ -134,7 +135,6 @@ case "$LANG" in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
export NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS'
|
export NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS'
|
||||||
export NLS_TIMESTAMP_FORMAT='YYYY-MM-DD HH24:MI:SS.FF'
|
|
||||||
|
|
||||||
|
|
||||||
if [ -x /usr/bin/less ]
|
if [ -x /usr/bin/less ]
|
||||||
|
|
Loading…
Reference in New Issue