https://github.com/repl6669/repl69.nvim
Monochrome neovim colorscheme with decent accents.
https://github.com/repl6669/repl69.nvim
colorschemes editor neovim-colorscheme neovim-theme nvim nvim-theme
Last synced: about 2 months ago
JSON representation
Monochrome neovim colorscheme with decent accents.
- Host: GitHub
- URL: https://github.com/repl6669/repl69.nvim
- Owner: repl6669
- License: mit
- Created: 2025-03-04T06:52:45.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-08T01:48:04.000Z (about 2 months ago)
- Last Synced: 2025-03-08T02:24:32.078Z (about 2 months ago)
- Topics: colorschemes, editor, neovim-colorscheme, neovim-theme, nvim, nvim-theme
- Language: Lua
- Homepage:
- Size: 3.48 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# repl69
Monochrome colorscheme with decent accents for neovim.
## Getting started
### [lazy.nvim](https://lazy.folke.io/installation)
```lua
-- lua/plugins/colorscheme.lua
return {
{
"repl6669/repl69",
name = "repl69",
lazy = false,
priority = 1000,
},{
"LazyVim/LazyVim",
opts = {
colorscheme = "repl69",
},
}
}
```## Screenshots



## Options
```lua
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
- Heavily based on [rose-pine](https://github.com/rose-pine/neovim) neovim theme.
- Inspired by [presto.vim](https://github.com/ewilazarus/preto/blob/master/colors/preto.vim).