Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.48 KB | None | 0 0
  1. set number
  2. syntax on
  3. set tabstop=4       " The width of a TAB is set to 4.
  4.                     " Still it is a \t. It is just that
  5.                     " Vim will interpret it to be having
  6.                     " a width of 4.
  7.  
  8. set shiftwidth=4    " Indents will have a width of 4
  9.  
  10. set softtabstop=4   " Sets the number of columns for a TAB
  11.  
  12. set expandtab       " Expand TABs to spaces
  13.  
  14. hi CursorLine cterm=NONE ctermbg=darkred ctermfg=white " Chenge color of line highlight
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement