Skip to content

Instantly share code, notes, and snippets.

@francium
Created October 19, 2016 06:04
Show Gist options
  • Save francium/846542a0c30411a546f2b4c692a31811 to your computer and use it in GitHub Desktop.
Save francium/846542a0c30411a546f2b4c692a31811 to your computer and use it in GitHub Desktop.
function! ToggleBackgroundDarkness()
if &background ==# "light"
set background=dark
else
set background=light
endif
endfunction
map <F8> :call ToggleBackgroundDarkness()<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment