Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 524 Bytes

File metadata and controls

30 lines (24 loc) · 524 Bytes

Night mode for Neovim.

Inspired by my annoyances with the werewolf plugin.

Install with lazy:

return {
	"coreyb-git/night-mode.nvim",
	dependencies = {
		"rcarriga/nvim-notify",

		"yorik1984/newpaper.nvim", --newpaper theme
		"echasnovski/mini.nvim", --minicyan theme
	},
	opts = {
		enabled = true,

		hour_sunrise = 5,
		hour_sunset = 17,

		day_colourscheme = "newpaper",
		day_bg = "light",
		day_lualine_theme = "",

		night_colourscheme = "minicyan",
		night_bg = "light",
		night_lualine_theme = "",
	},
}