https://github.com/maxmx03/retrolegends.nvim
Retrolegends colorscheme for Neovim and Vim. made with schemecraft
https://github.com/maxmx03/retrolegends.nvim
colorscheme lua neovim neovim-colorscheme neovim-theme neovim-theme-dark nvim-plugin retro retrolegends vim vim-colorscheme vim-plugin
Last synced: 9 months ago
JSON representation
Retrolegends colorscheme for Neovim and Vim. made with schemecraft
- Host: GitHub
- URL: https://github.com/maxmx03/retrolegends.nvim
- Owner: maxmx03
- License: mit
- Created: 2025-04-19T07:33:45.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-04-20T22:59:30.000Z (9 months ago)
- Last Synced: 2025-04-24T00:58:47.716Z (9 months ago)
- Topics: colorscheme, lua, neovim, neovim-colorscheme, neovim-theme, neovim-theme-dark, nvim-plugin, retro, retrolegends, vim, vim-colorscheme, vim-plugin
- Language: Lua
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Retrolegends

Credit and Reference: [iTerm2](https://github.com/mbadolato/iTerm2-Color-Schemes)

[](#)

## Neovim
### Installation
To install Retrolegends, you need a plugin manager.
In the example, bellow we are going to use lazy.nvim.
```lua
return {
'maxmx03/retrolegends.nvim',
priority = 1000,
lazy = false,
config = function()
vim.g.retrolegends_treesitter = true
vim.g.retrolegends_lspconfig = true
vim.g.retrolegends_telescope = true
vim.g.retrolegends_dashboard = true
vim.g.retrolegends_gitsigns = true
vim.g.retrolegends_nvimtree = true
vim.g.retrolegends_cmp = true
vim.g.retrolegends_markview = true
vim.cmd.colorscheme 'retrolegends'
end,
}
```
### Transparency
`vim.g.retrolegends_transparency = true`
### Plugins
Bellow are the Retrolegends supported plugins.
Enable the plugins you want.
```vim
vim.g.retrolegends_treesitter = true
vim.g.retrolegends_lspconfig = true
vim.g.retrolegends_telescope = true
vim.g.retrolegends_dashboard = true
vim.g.retrolegends_gitsigns = true
vim.g.retrolegends_nvimtree = true
vim.g.retrolegends_cmp = true
vim.g.retrolegends_markview = true
```
## Vim
### Installation
To install Retrolegends, you need a plugin manager.
In the example, bellow we are going to use vim-plug.
```vim
Plug 'maxmx03/retrolegends.nvim', { 'branch': 'vim' }
colorscheme retrolegends
```
### Transparency
`let g:retrolegends_transparency = 0`
### Plugins
Bellow are the Retrolegends supported plugins.
Enable the plugins you want.
```vim
let g:retrolegends_treesitter = 1
let g:retrolegends_lspconfig = 1
let g:retrolegends_telescope = 1
let g:retrolegends_dashboard = 1
let g:retrolegends_gitsigns = 1
let g:retrolegends_nvimtree = 1
let g:retrolegends_cmp = 1
let g:retrolegends_markview = 1
```
## Vim 9 (vim only)
### Installation
To install Retrolegends, you need a plugin manager.
In the example, bellow we are going to use vim-plug.
```vim
vim9script
plug#begin()
Plug 'maxmx03/retrolegends.nvim', { 'branch': 'vim9' }
plug#end()
colorscheme retrolegends
```
### Transparency
g:retrolegends_transparency = true