GitHub - stefanvanburen/rams: a minimal neovim colorscheme

1 min read Original article ↗

A minimal colorscheme for Neovim with light and dark modes.

The colors have been migrated from rams.vim, which originally used vim-colortemplate.

Installation

vim.pack.add({ 'https://github.com/stefanvanburen/rams' })
vim.cmd.colorscheme('rams')

Light and Dark Modes

The colorscheme respects vim.o.background. Set it before loading the colorscheme:

-- For light mode (default)
vim.o.background = 'light'
vim.cmd.colorscheme('rams')

-- For dark mode
vim.o.background = 'dark'
vim.cmd.colorscheme('rams')

Supported Plugins