Monochrome colorscheme with decent accents for neovim.
-- lua/plugins/colorscheme.lua
return {
{
"repl6669/repl69",
name = "repl69",
lazy = false,
priority = 1000,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "repl69",
},
}
}
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")
- Heavily based on rose-pine neovim theme.
- Inspired by presto.vim.