Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. set nocompatible
  2. set number
  3. set tabstop=4
  4. set shiftwidth=4
  5. set expandtab
  6.  
  7. set hlsearch
  8.  
  9. syntax enable
  10. syntax on
  11.  
  12. set autoindent
  13. set smartindent
  14. set cindent
  15.  
  16. set t_Co=256
  17. set background=dark
  18. colorscheme molokai
  19.  
  20. set fileencodings=utf-8,gb2312
  21. set enc=utf-8
  22.  
  23. " remember last position
  24. if has("autocmd")
  25. au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
  26. endif
Add Comment
Please, Sign In to add comment