A minimal yet customizable Neovim colorscheme with Lualine integration.
- Dark background with soft, modern colors
- Built-in Lualine theme (
glyph
) - Easy highlight overrides for customization
- Lightweight, no dependencies
{
"cxinu/glyph.nvim",
lazy = false, -- load immediately
priority = 1000, -- make sure it loads before other plugins
}
vim.cmd.colorscheme("glyph")
glyph.nvim
exposes a small API for overrides:
require("glyph").setup({
highlights = {
Comment = { fg = "#888888", italic = false },
Keyword = { fg = "#ff0000", bold = true },
}
})
- All highlight groups defined in
:h highlight-groups
are supported. - Overrides are merged with the defaults.
glyph.nvim
comes with its own lualine theme (glyph
).
Just set it in your config:
require("lualine").setup({
options = {
theme = "glyph", -- or leave blank for lualine to automatically pick it up
}
})