Skip to content

cxinu/glyph.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🌿 glyph colorscheme

A minimal yet customizable Neovim colorscheme with Lualine integration.

screenshot

✨ Features

  • Dark background with soft, modern colors
  • Built-in Lualine theme (glyph)
  • Easy highlight overrides for customization
  • Lightweight, no dependencies

📦 Installation

{
  "cxinu/glyph.nvim",
  lazy = false,      -- load immediately
  priority = 1000,   -- make sure it loads before other plugins
}

🚀 Usage

vim.cmd.colorscheme("glyph")

⚙️ Configuration

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.

🎨 Lualine Integration

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

📜 License

MIT

About

A Minimal Neovim colorscheme

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages