Guest User

Untitled

a guest
Jan 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. syntax on
  2. set autoindent
  3. set expandtab
  4. let _curfile=expand("%:r")
  5. if _curfile == 'Makefile'
  6. set noexpandtab
  7. endif
  8. set tabstop=4
  9. set shiftwidth=4
  10. set cursorline
  11. set number
  12. set laststatus=2
  13. set showmatch
  14. set scrolloff=8
  15. set sidescrolloff=16
  16. set sidescroll=1
  17. set confirm
  18. set autoread
  19. set nobackup
  20. set noswapfile
  21. set hlsearch
  22. set incsearch
  23. set ignorecase
  24. set smartcase
  25. set wrapscan
  26. set gdefault
  27. set mouse=a
  28. set visualbell t_vb=
  29. set noerrorbells
Add Comment
Please, Sign In to add comment