Skip to content

puttehi/nvim-puttehi-dark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neovim colorscheme: Puttehi dark

My personal color scheme for neovim, extrapolated from my local generic color scheme.

It's dark and does not have too many colors in general, but tries to still be easy to grok.

image

Extras

It also supports Lualine. Use "auto" or "puttehi_dark" to enable.

Usage

Lazy

{
    "puttehi/nvim-puttehi-dark",
    opts = {},
    config = function(_,_)
        require("nvim-puttehi-dark").setup()
        vim.cmd.colorscheme("puttehi-dark")
    end
}

Overriding or adding highlights

You can pass in opts with the format:

opts = {
  -- Palette name,  RGB name, vim color name or "none" / "NONE" to disable
  SomeHighlight = { fg = "text_normal", bg = "#123456", sp = "red", style = "bold" }
  -- Use link to link to an existing highlight group
  SomeOtherHighlight = { link = "SomeHighlight" }
}

Chroma XML generator

Open ./tools/colors-to-chroma-xml.lua in Neovim and :so. Check :Fidget history to copy-paste.

About

Neovim color scheme as a plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages