Created
October 23, 2013 11:45
-
-
Save towerhe/7117077 to your computer and use it in GitHub Desktop.
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
set guifont=Menlo\ Regular:h14 | |
color molokai | |
au BufNewFile,BufRead *.emblem set filetype=slim | |
let mapleader = "," | |
" Folding | |
set foldenable | |
set foldmethod=indent | |
set foldlevel=99999 | |
" Folding expand/collapse mappings | |
map + zo | |
map - zc | |
map ++ zR | |
map -- zM | |
nnoremap <space> @=((foldclosed(line(".")) < 0) ? 'zc' : 'zo')<cr> | |
set cursorline " Highlight current line | |
set cursorcolumn " Highlight current column | |
set colorcolumn=80 " Right margin indicator | |
"set background=dark | |
hi Normal guifg=#e0e0e0 guibg=#202020 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment