My personal Vim configuration.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324
  1. set nocompatible
  2. filetype off
  3. filetype plugin indent on
  4. set nu
  5. set hls
  6. set si
  7. " Indentation
  8. set expandtab
  9. set shiftwidth=4
  10. set softtabstop=4
  11. " Vundle
  12. set rtp+=~/.vim/bundle/Vundle.vim
  13. call vundle#begin()
  14. Plugin 'VundleVim/Vundle.vim'
  15. " Add plugins here
  16. call vundle#end()