A Neovim Lua plugin that matches the colorscheme background with the system dark/light appearance.
When using lazy.nvim just include raindev/daybreak.nvim
into the list of plugins:
'raindev/daybreak.nvim'
With different light and dark themes (make sure you don't also set
colorscheme
in your configuration to avoid conflicts):
{
'raindev/daybreak.nvim',
opts = {
light = 'github_light_default',
dark = 'github_dark_default',
}
}
Using any other plugin manager add raindev/daybreak.nvim
and load the plugin with
require('daybreak').setup({
light = 'github_light_default',
dark = 'github_dark_default',
})
- Immediately pick up appearance changes.
- Linux
- macOS
- windows
- Event based, no polling.
- Support Linux, macOS and Windows.
- Zero configuration required.