No description
- Lua 75.4%
- C++ 23.9%
- Scheme 0.7%
| colors | ||
| images | ||
| lua/norrsken | ||
| queries | ||
| test | ||
| .gitignore | ||
| lazy.lua | ||
| LICENSE | ||
| README.md | ||
nvim-norrsken
A dark Neovim colorscheme built with lush.nvim.
The color palette is built around a deep navy-black background with a deliberate semantic system. Each color maps to a meaningful category. Keywords are warm amber, execution flow is teal, types are blue, values are tan. The goal is low visual noise with high information density.
Install
Requires lush.nvim (declared automatically as a lazy.nvim dependency).
{ "LarssonMartin1998/nvim-norrsken" }
require("norrsken").setup({
integrations = {
blink = true,
noice = true,
incline = true,
neogit = true,
tiny_inline_diagnostics = true,
},
})
All integrations are opt-in and disabled by default. setup() applies the colorscheme. You can also use colorscheme norrsken directly without calling setup() if you don't need any integrations.
Lualine
The lualine theme is not auto-applied. Pass it explicitly in your lualine setup:
require("lualine").setup({ options = { theme = require("norrsken.integrations.lualine") } })
