Koalight.nvim
A Moonlight colorscheme port for neovim
Install / Use
/learn @Koalhack/Koalight.nvimREADME
🌒 + 🐨 = koalhack/koalight.nvim
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.
<details> <summary>🎇 Supported plugins</summary>- TreeSitter
- LSP Diagnostics
- LSP Saga
- Git
- Git Signs
- Telescope
- WichKey
- Indent Blankline
- Dashboard
- BufferLine
- Lualine
To install Koalight you need a plugin manager.
Lazy
return {
'koalhack/koalight.nvim'
}
Packer
use 'koalhack/koalight.nvim'
</details>
<details>
<summary>⚙️ Configure</summary>
Enable the colorscheme:
Lua
local status, koalight = pcall(require, "koalight")
if (not status) then return end
vim.cmd.colorscheme 'koalight'
</details>
<details>
<summary> 🌑 Lualine</summary>
Enable the koalight theme for Lualine:
Lua
local status, lualine = pcall(require, "lualine")
if (not status) then return end
lualine.setup {
options = {
theme = 'koalight'
}
}
</details>
