Skip to content

Koalhack/koalight.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🌒 + 🐨 = koalhack/koalight.nvim

Created with colorgen

koalight.nvim

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'
  }
}

🌈 Credit / Inspiration