-
-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Configured colorscheme is not used by default #2446
Comments
As a temporary fix, you can use the following option programs.nixvim = {
extraConfigLuaPost = ''vim.cmd [[ colorscheme nord ]]'';
}; if you want |
This should already be done by Perhaps the generated lua code is ending up in the wrong part of
Lines 115 to 117 in 929bb0c
Our nixvim/modules/colorscheme.nix Lines 12 to 14 in 929bb0c
Our Lines 113 to 121 in 929bb0c
You can inspect the final generated lua yourself using |
Checking the output of
Which from the line numbers (143-146) happens early on, so is probably the one that is added automatically and thus the one not working. Then the very last line is just |
This might actually be a regression in
I can check my flake.lock for a potential bisect if it helps. |
nord
unstable
unstable
Description
Setting the default colorscheme to
nord
viacolorschemes.nord.enable
doesn't work, while the colorscheme gets installed and can be switched to by doing:colorscheme nord
, the default Neovim colorscheme is used by default.I have also tested with
colorschemes.cyberdream.enable
and got the same result.Minimal, Reproducible Example (MRE)
The text was updated successfully, but these errors were encountered: