My personal Vim configuration.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

vimrc 279 B

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()