Koalhack / koalight.nvim

A Moonlight colorscheme port for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸŒ’ + 🐨 = 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

About

A Moonlight colorscheme port for neovim

License:MIT License


Languages

Language:Lua 99.7%Language:Vim Script 0.3%