-
Notifications
You must be signed in to change notification settings - Fork 99
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
Some colors are wrong on neovim 0.10 #34
Comments
Same problem here |
I switched to https://github.com/maxmx03/solarized.nvim Then I had to adjust some settings to make it look the same: vim.o.background = 'dark'
require('solarized').setup({
transparent = false,
palette = 'solarized',
styles = {
keywords = { bold = false },
},
highlights = {
KeyWord = { fg = '#859900' },
Delimiter = { fg = '#dc322f' },
Number = { fg = '#2aa198' }
},
})
vim.cmd.colorscheme 'solarized' |
There's an incompatibility with Neovim v.0.10 (overcache/NeoSolarized#34) which makes some colors no longer match the solarized theme. Therefore (temporarily) switching to https://github.com/maxmx03/solarized.nvim
neovim 0.10 changelog:
This sufficed for me: @@ -134,6 +134,11 @@
if exists("syntax_on")
syntax reset
endif
+if has('nvim-0.10')
+ " Pending explicit highlight-group definitions:
+ " https://github.com/overcache/NeoSolarized/issues/34
+ colorscheme vim
+endif
let colors_name = "NeoSolarized"
"}}} I don't know enough about highlight groups—namely, which ones NeoSolarized left implicit—to pursue the correct fix. |
With the release of neovim 0.10 the default colorscheme in neovim was changed. It seems that NeoSolarized picks up some of the default colors as some colors do not match the solarized theme when using neovim v0.10.
with neovim 0.10:
with neovim 0.9.5:
The text was updated successfully, but these errors were encountered: