Skip to content

Instantly share code, notes, and snippets.

@Dkendal
Created May 12, 2014 17:15
Show Gist options
  • Save Dkendal/e2aea12b2ff37caf7936 to your computer and use it in GitHub Desktop.
Save Dkendal/e2aea12b2ff37caf7936 to your computer and use it in GitHub Desktop.
function! SwapLightAndDarkColorscheme()
if g:colors_name == 'solarized'
colorscheme molokai
elseif g:colors_name == 'molokai'
colorscheme solarized
endif
endfunction
command! SwapColors :call SwapLightAndDarkColorscheme()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment