From 09b723caee6f92405a8227ee5df4efdbb6fc28a9 Mon Sep 17 00:00:00 2001 From: Gea-Suan Lin Date: Mon, 28 Mar 2011 10:35:52 +0800 Subject: [PATCH 1/2] Add -v to ssh. --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index af001ca..3237abc 100644 --- a/.bashrc +++ b/.bashrc @@ -19,7 +19,7 @@ alias psm="ps -U $USER" alias psr="psu root" alias psu="ps -U" alias s="screen" -alias ssh="ssh -4 -C -e none" +alias ssh="ssh -4 -C -e none -v" alias t="telnet" # complete -d cd From 818d80d69d5d336c6c7271496e4adea0ae0a3a07 Mon Sep 17 00:00:00 2001 From: Gea-Suan Lin Date: Tue, 29 Mar 2011 15:44:05 +0800 Subject: [PATCH 2/2] Refine vimrc. --- vimrc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/vimrc b/vimrc index 51d4cc7..b8e23c4 100644 --- a/vimrc +++ b/vimrc @@ -1,6 +1,3 @@ -nmap [Z W -nmap w -set background=dark set cindent set cursorline set encoding=utf8 @@ -26,5 +23,14 @@ set t_Co=256 set visualbell set wildmenu syntax on +" +" color schema +set background=dark +" +" keybinding +nmap [Z W +nmap w +" +" other au BufNewFile,BufRead *.psgi setf perl au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif