/elrodeo-vim-colorscheme

Dark low-contrast color scheme for Vim

Primary LanguageVim Script

README

Elrodeo is a low contrast color scheme with dark and light modes. Inspired and derived from the ghostbuster theme.

Configuration

" sets the theme
colorscheme elrodeo
" sets F10 as a switch between dark and light modes
map <F10> :let &background = ( &background == "dark" ? "light" : "dark" )<CR>