a vim/neovim scheme based on the tr100 aesthetic
Based off of this screenshot post from US graphics.
Download via your favourite package manager, for example w/ Lazy:
{
'l-snq/tr100.vim',
lazy = false,
priority = 1000,
config = function()
vim.cmd('colorscheme tr100')
end,
}
With packer:
use {
'l-snq/tr100.vim',
config = function()
vim.cmd('colorscheme tr100')
end
}