My personal Vim configuration.
Não pode escolher mais do que 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.
 
 
 

24 linhas
308 B

  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. Plugin 'git://github.com/mogelbrod/vim-jsonpath'
  16. call vundle#end()