Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3.  
  4. " set the runtime path to include Vundle and initialize
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6. call vundle#begin()
  7. " alternatively, pass a path where Vundle should install plugins
  8. "call vundle#begin('~/some/path/here')
  9.  
  10. " let Vundle manage Vundle, required
  11. Plugin 'gmarik/Vundle.vim'
  12.  
  13. Plugin 'Valloric/YouCompleteMe'
  14.  
  15. " All of your Plugins must be added before the following line
  16. call vundle#end() " required
  17.  
  18. autocmd CompleteDone * pclose
  19.  
  20. set tabstop=4
  21. set softtabstop=4
  22. set shiftwidth=4
  23. set shiftround
  24. set expandtab
  25.  
  26. syntax on
  27.  
  28. "Automatic reloading of .vimrc
  29. autocmd! bufwritepost .vimrc source %
  30.  
  31. " Disable stupid backup and swap files - they trigger too many events
  32. " for file system watchers
  33. set nobackup
  34. set nowritebackup
  35. set noswapfile
  36.  
  37. " Make search case insensitive
  38. set hlsearch
  39. set incsearch
  40. set ignorecase
  41. set smartcase
  42.  
  43. " Set off the other paren
  44. highlight MatchParen ctermbg=3
  45. " {{{ }}}
  46. set cul
  47. " highlight current line
  48. hi CursorLine term=none cterm=none ctermbg=4
  49. colorscheme elflord
  50.  
  51. set backspace=indent,eol,start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement