Created
June 14, 2011 22:10
-
-
Save devth/1026054 to your computer and use it in GitHub Desktop.
A simple presentation-mode starting point for vim using the solarized light colorscheme: http://ethanschoonover.com/solarized
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
" Presentation colors and config | |
function! PresentationMode() | |
colorscheme solarized | |
set bg=light | |
set nolist | |
endfunction | |
nmap <leader>PR :call PresentationMode()<cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
THANK YOU :)