Conversation
AH-Merii
commented
Sep 9, 2026
| -- Alternative theme. Switch with `:colorscheme catppuccin-frappe` (or -latte/-macchiato/-mocha): | ||
| -- Neovim >= 0.12 bundles its own `colors/catppuccin.vim`, so the bare name resolves to that | ||
| -- file and never loads this plugin; the flavour names are only provided here. | ||
| lazy = true, |
Owner
Author
There was a problem hiding this comment.
coinflip: I kept catppuccin and tokyonight as lazy = true specs instead of deleting them, so :colorscheme catppuccin-frappe or :colorscheme tokyonight still works and only onedark pays for startup.
the cost is that most of this file is now config for two themes you may never load, including the treesitter capture overrides I just rewrote. if you're never switching back, say so and I'll delete both specs, the file gets a lot shorter.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three colorschemes loaded eagerly at startup when only one of them can be active, and catppuccin's
highlight_overrideswere written against the pre-0.9 treesitter capture names —TSDanger,@parameter.reference,@text.*and friends — so most of them linked groups that no longer exist and the theme they were tuning largely rendered with its own defaults. TheNonText/SpecialKeycolours had the same problem from the other end: set inoptions.lua, which runs before any colorscheme, and overwritten as soon as one loaded.Closes #80