Last active
June 10, 2018 12:15
-
-
Save justinjpacheco/1215787 to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or 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 on | |
| set tabstop=2 | |
| set softtabstop=2 | |
| set shiftwidth=2 | |
| set expandtab | |
| set autoindent | |
| set ruler | |
| set ls=2 | |
| set background=dark | |
| set nocompatible | |
| set colorcolumn=80 | |
| " https://raw.githubusercontent.com/jnurmine/Zenburn/master/colors/zenburn.vim | |
| colorscheme zenburn | |
| " extrawhitespace highlight | |
| " | |
| highlight ExtraWhitespace ctermbg=green guibg=blue ctermfg=white | |
| match ExtraWhitespace /\s\+$\| \+\ze\t/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment