Advertisement
Guest User

Untitled

a guest
Sep 8th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.63 KB | None | 0 0
  1. " Enable filetype detection for plugins and indentation options
  2. filetype plugin indent on
  3.  
  4. " Enables syntax highlighting
  5. syntax on
  6.  
  7. " Write the file when we leave the buffer
  8. set autowrite
  9.  
  10. " Make backspace behave as expected
  11. set backspace=eol,indent,start
  12.  
  13. " The length of a tab
  14. " This is for documentation purposes only,
  15. " do not change the default value of 8, ever.
  16. set tabstop=8
  17.  
  18. " The number of spaces inserted/removed when using < or >
  19. set shiftwidth=4
  20.  
  21. " The number of spaces inserted when you press tab.
  22. " -1 means the same value as shiftwidth
  23. set softtabstop=-1
  24.  
  25. " Insert spaces instead of tabs
  26. set expandtab
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement