Created
October 2, 2012 22:36
dotvim
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
"******************************" | |
" .VIMRC.AFTER " | |
"******************************" | |
"if has('gui_running') " Duh. | |
" set background=light | |
"else | |
" set background=dark | |
" endif | |
colorscheme solarized | |
"set guifont=Inconsolata:h18 " Font, size | |
"set guifont=Courier:h15 | |
set guifont=DejaVu\ Sans\ Mono | |
set linespace=6 " and linespacing | |
set relativenumber " Set line numbers to relative | |
set wrap linebreak nolist " Enable (vimcast's) soft wrapping | |
:iabbrev </ </<C-X><C-0> " Type `</` and Space to complete | |
" an HTML tag | |
" Use `<//` if appropriate. | |
set showcmd " Display the <leader> in the ruler | |
" Yet to add: trim trailing whitespace | |
" figure out how to disable wrapping at line | |
" bind txt files to Markdown syntax |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment