Last active
April 21, 2016 15:16
-
-
Save gtors/62d56b13762f36693498eababeddaeb7 to your computer and use it in GitHub Desktop.
vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syn on | |
set number nowrap hls | |
colo desert | |
" Folding | |
set fen fdm=syntax | |
hi Folded ctermbg=0 | |
" Show cursor line position | |
set cul so=9999 | |
" Indent | |
set ts=4 sw=4 si et | |
" Display whitespaces as special chars | |
set listchars=tab:>—,trail:·,extends:>,precedes:< | |
set list | |
hi Whitespaces ctermfg=0 | |
match Whitespaces /\s/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment