Last active
August 29, 2015 14:21
-
-
Save pvarsh/4e8a9c2bb1ef8d361894 to your computer and use it in GitHub Desktop.
My rcs
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
" Syntax highlighting | |
syntax on | |
filetype indent plugin on | |
" ghlight lines over 79 columns (PEP8) | |
highlight OverLength ctermbg=red ctermfg=white guibg=#351818 | |
match OverLength /\%79v.\+/ | |
" Convert tabs to 4 spaces | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
" Show line numbers | |
set nu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment