Advertisement
Guest User

Untitled

a guest
May 5th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. " enable syntax highlighting
  2. syntax on
  3.  
  4. set clipboard=unnamed
  5.  
  6. " show line numbers
  7. set number
  8.  
  9. " set tabs to have 4 spaces
  10. set ts=4
  11.  
  12. " indent when moving to the next line while writing code
  13. set autoindent
  14.  
  15. " expand tabs into spaces
  16. set expandtab
  17.  
  18. " when using the >> or << commands, shift lines by 4 spaces
  19. set shiftwidth=4
  20.  
  21. " show a visual line under the cursor's current line
  22. set cursorline
  23.  
  24. " show the matching part of the pair for [] {} and ()
  25. set showmatch
  26.  
  27. " allow backspace key to remove previously entered characters
  28. set backspace=indent,eol,start
  29.  
  30. " enable all Python syntax highlighting features
  31. let python_highlight_all = 1
  32. imap jk <ESC>
  33.  
  34. " tab complete
  35. set wildmenu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement