Created with colorgen
Koalight is a Neovim colorscheme based off the Moonlight Theme for VSCode. This theme was largely inspired by Shaunsingh's moonlight.nvim version, which was a high-quality theme, but the theme in question has not been maintained over time. So I took it upon myself to create a new version that would be maintained.
🎇 Supported plugins
📦 Install
To install Koalight you need a plugin manager.
Lazy
return {
'koalhack/koalight.nvim'
}
Packer
use 'koalhack/koalight.nvim'
⚙️ Configure
Enable the colorscheme:
Lua
local status, koalight = pcall(require, "koalight")
if (not status) then return end
vim.cmd.colorscheme 'koalight'
🌑 Lualine
Enable the koalight
theme for Lualine
:
Lua
local status, lualine = pcall(require, "lualine")
if (not status) then return end
lualine.setup {
options = {
theme = 'koalight'
}
}