Primeiro, defina seu $HOME/.vimrc
para seguir um padrão específico. O meu é algo assim:
" (sw)shiftwidth: how many columns text is indented with reindent operations
" (sts)softtabstop: how many columns vim uses when you hit tab
" (ts)tabstop: how many columns a tab counts for
set ts=4 sw=4 sts=2
" expandtab: appropriate number of spaces in insert mode
set expandtab
" theme and colors
set t_Co=256
colorscheme desert
" Prevents keeping of backup after overwriting the file
set nobk
" To see line numbers on the left
set number
" autocomplete parenthesis, brackets and braces
inoremap ( ()<Left>
inoremap [ []<Left>
inoremap { {}<Left>
" Syntax highlighting on
syntax on
" share windows clipboard
set clipboard+=unnamed
" Hightlight the curent column
set cursorcolumn
" Hightlight the current line
set cursorline
Eu recomendo passar por este . Alguns dos scripts que eu recomendo são:
taglist (requer exuberant-ctags
)
Quanto às suas necessidades pessoais. Você deve procurar pelo script adequado aqui e seguir as instruções.