Como posso fazer do VIM um IDE completo?

0

Como eu poderia fazer do VIM um IDE completo usando diferentes plugins suportados para integração com YUI, JQuery e git, etc.

    
por user7044 26.08.2011 / 13:16

2 respostas

1

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:

NerdTREE

taglist (requer exuberant-ctags )

bufexplorer

snipMate

Quanto às suas necessidades pessoais. Você deve procurar pelo script adequado aqui e seguir as instruções.

    
por sagarchalise 26.08.2011 / 13:52
1

Ou execute o vim dentro de pida .

    
por poolie 14.09.2011 / 22:45