Advertisement
Guest User

Untitled

a guest
Sep 10th, 2017
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. call plug#begin('~/.vim/plugged')
  2.  
  3. "Plug 'Townk/vim-autoclose'
  4. Plug 'Raimondi/delimitMate'
  5. Plug 'morhetz/gruvbox'
  6.  
  7. call plug#end()
  8.  
  9. " Visual stuff
  10. set background=dark
  11. colo gruvbox
  12. syntax on
  13. set number
  14. set cursorline
  15. set list
  16. set cc=80
  17.  
  18. " Indent stuff
  19. set softtabstop=4
  20. set shiftwidth=4
  21. set expandtab
  22. set autoindent
  23. set smartindent
  24.  
  25. " Up down controls
  26. inoremap <up> <up><c-o>zz
  27. inoremap <down> <down><c-o>zz
  28. nnoremap <up> kzz
  29. nnoremap <down> jzz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement