Created
February 22, 2014 01:54
-
-
Save devedetti/9147465 to your computer and use it in GitHub Desktop.
Vim y gVim
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
| .vimrc | |
| ------ | |
| syntax on | |
| set tabstop=4 | |
| set softtabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| set autoindent | |
| set ruler | |
| set hlsearch | |
| autocmd BufWritePre * :%s/\s\+$//e | |
| .gvimrc | |
| ------- | |
| colorscheme desert | |
| set lines=24 columns=80 | |
| highlight ExtraWhitespace ctermbg=darkyellow guibg=darkyellow | |
| match ExtraWhitespace /\s\+$/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment