Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. let g:powerline_pycmd = "py3"
  2. set laststatus=2
  3. set t_Co=256
  4.  
  5. "The following settings are taken from fullstackpython.com
  6.  
  7. " enable syntax highlighting
  8. syntax enable
  9.  
  10. " show line numbers
  11. set number
  12.  
  13. " set tabs to have 2 spaces
  14. set ts=2
  15.  
  16. " indent when moving to the next line while writing code
  17. set autoindent
  18.  
  19. " expand tabs into spaces
  20. set expandtab
  21.  
  22. " when using the >> or << commands, shift lines by 4 spaces
  23. set shiftwidth=4
  24.  
  25. " show a visual line under the cursor's current line
  26. set cursorline
  27.  
  28. " show the matching part of the pair for [] {} and ()
  29. set showmatch
  30.  
  31. " enable all Python syntax highlighting features
  32. let python_highlight_all = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement