Salchipapa.Dots comes pre-loaded with more than 20 colorschemes, all configured inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/erickm13/Salchipapa.Dots/llms.txt
Use this file to discover all available pages before exploring further.
lua/plugins/colorscheme.lua. Every scheme is set to priority = 1000 so they are available immediately at startup without competing with other plugins. The vast majority ship with transparent background support so the terminal emulator’s own background color shows through. The active default is solarized-osaka, set via the LazyVim opts override at the bottom of the file.
Default colorscheme
craftzdog/solarized-osaka.nvim is the only scheme loaded with lazy = false — it is always ready on startup:
How to switch colorschemes
Live preview
Run
:colorscheme <Tab> in the Neovim command line to autocomplete and preview any installed scheme instantly — no restart required.Make it permanent
Open
lua/plugins/colorscheme.lua and change the value in the LazyVim override block:Available colorschemes
Dark / Standard
| Plugin | Colorscheme name | Notes |
|---|---|---|
craftzdog/solarized-osaka.nvim | solarized-osaka | Default; transparent, italic comments, bold keywords |
catppuccin/nvim | catppuccin (mocha flavour) | Transparent, terminal colors enabled |
rebelot/kanagawa.nvim | kanagawa (wave theme) | Transparent, italic comments & keywords, bold statements |
Gentleman-Programming/gentleman-kanagawa-blur | gentleman-kanagawa-blur | Kanagawa variant with blur effect |
Alan-TheGentleman/oldworld.nvim | oldworld | Dark muted palette |
EdenEast/nightfox.nvim | nightfox (and variants) | Transparent, italic comments, bold keywords, italic+bold functions |
scottmckendry/cyberdream.nvim | cyberdream | Transparent, italic comments, borderless telescope |
navarasu/onedark.nvim | onedark (darker style) | Transparent, terminal colors |
sainnhe/gruvbox-material | gruvbox-material | Transparent, italic + bold enabled, hard background |
rose-pine/neovim | rose-pine (moon variant) | Transparent, bold & italic styles |
Minimal / Dark
| Plugin | Colorscheme name | Notes |
|---|---|---|
nyoom-engineering/oxocarbon.nvim | oxocarbon | IBM Carbon-inspired dark scheme |
slugbyte/lackluster.nvim | lackluster | Near-monochrome minimal |
mcchrish/zenbones.nvim | zenbones | Low-contrast bones-family scheme (requires rktjmp/lush.nvim) |
Warm / Nature
| Plugin | Colorscheme name | Notes |
|---|---|---|
neanias/everforest-nvim | everforest | Hard style, transparent background level 2, italics |
ellisonleao/gruvbox.nvim | gruvbox | Transparent mode, italic comments and emphasis |
xero/miasma.nvim | miasma | Earthy muted tones |
Cold / Nord
| Plugin | Colorscheme name | Notes |
|---|---|---|
AlexvZyl/nordic.nvim | nordic | Transparent bg and floats, italic comments, reduced blue |
shaunsingh/nord.nvim | nord | Transparent background (nord_disable_background = true), italic, bold |
Synthwave / Retro
| Plugin | Colorscheme name | Notes |
|---|---|---|
maxmx03/fluoromachine.nvim | fluoromachine | Transparent, glow disabled, fluoromachine theme variant |
samharju/synthweave.nvim | synthweave | Transparent synthwave palette |
Editor-inspired
| Plugin | Colorscheme name | Notes |
|---|---|---|
projekt0n/github-nvim-theme | github-dark, github-light, etc. | Transparent, italic comments, bold keywords |
olimorris/onedarkpro.nvim | onedark_dark, onedark_vivid, etc. | Transparent, italic comments, bold keywords, italic functions |
marko-cerovac/material.nvim | material | Deep Ocean style (vim.g.material_style = "deep ocean"), transparent background |
sho-87/kanagawa-paper.nvim | kanagawa-paper | Transparent, ink variant enabled |
Transparency and autocommands
All colorschemes that support a native transparent mode have it enabled in theiropts. For schemes that don’t expose a transparency option, the ColorScheme autocommand in autocmds.lua clears the snacks.nvim highlight groups after every colorscheme change:
TermOpen autocommand:
Normal highlight rather than a scheme-specific float background.