谁用vim把你的_vimrc和plugin亮出来看看

谁用vim把你的_vimrc和plugin亮出来看看

谁用vim把你的_vimrc和plugin亮出来看看
用vim没多久,觉得很好用,不过学习perl时老是觉得没有notepad++好用,我知道是我配置不行,大家谁用vim些perl把你们的_vimrc和用了什么plugin都说一说吧,不要吝啬啊。




   

看看这篇文章--http://w.
看看这篇文章
http://wiki.perlchina.org/index.php/Vim_for_Perl_developers

另外,我的 .vimrc 文件如下:

[quote]
syntax on
"set background=light
set background=dark
set smartindent

set tabstop=8
set softtabstop=4
set expandtab
set shiftwidth=4

"set term=xterm-color
"set binary noeol
"set vb
set noautoindent

"set autoindent
set showmatch
au BufWritePost *.pl,*.pm !perl -c %
"let b:current_syntax = "perl"
"colorscheme dante
"colorscheme impact
"colorscheme zenburn
"let g:zenburn_alternate_Visual = 1
"
inoremap <tab> <c-r>=InsertTabWrapper()<cr>

function InsertTabWrapper()
let col = col('.') - 1
if !col || getline('.')[col - 1] !~ '\k'
return "\<tab>"
else
return "\<c-p>"
endif
endfunction

[/quote]

值得一提的是每次保存文件都对当前文件运行 perl -c 做语法检查。
谢谢qiang.