Skip to content

A dark theme for vim based on vim-monotonic and chrome's dark reader

License

Notifications You must be signed in to change notification settings

ldelossa/vimdark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A dark theme for vim based on vim-monotonic and chrome's dark reader

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published