Skip to content

repl6669/repl69.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

repl69

Monochrome colorscheme with decent accents for neovim.

Getting started

-- lua/plugins/colorscheme.lua
return {
  {
    "repl6669/repl69",
    name = "repl69",
    lazy = false,
    priority = 1000,
  },

  {
    "LazyVim/LazyVim",
    opts = {
      colorscheme = "repl69",
    },
  }
}

Screenshots

repl69 colorscheme preview 01 repl69 colorscheme preview 02 repl69 colorscheme preview 03 repl69 colorscheme preview 04

Options

require("repl69").setup({
    enable = {
        -- Set terminal colors
        terminal = true,
    },

    -- Enabled styles
    styles = {
        bold = true,
        italic = true,
        transparency = true,
    },

    -- Custom highlight groups
    highlight_groups = {},
})

vim.cmd("colorscheme repl69")

Credits