ldelossa/vimdark

github github
colorschemetreesitter-colorschemes
stars 70
issues 0
subscribers 2
forks 8
CREATED

2019-04-16

UPDATED

2 years ago


vimdark

A Vim theme for night time. Loosely based on vim-monotonic and chrome's dark reader extention. A light theme is included as well for the day time.

Installation (via vim-plug)

Plug 'ldelossa/vimdark'

Theme switching

Add this in your vimrc to change dark and light themes based on time

" use vimdark from 9pm to 10am
if strftime("%H") >= 21 || strftime("%H") <= 9
    colorscheme vimdark
else
    colorscheme vimlight
endif

function! DarkMode()
    colorscheme vimdark
endfunction

function! LightMode()
    colorscheme vimlight
endfunction

Go Screenshot

Alt text Alt text

C

Alt text Alt text