-
Notifications
You must be signed in to change notification settings - Fork 44
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
Onedark nordic, visual highlight difficult to see #49
Comments
Yeah, that looks bad. The Onedark theme was something I quickly experimented with, in an attempt to reduce the overall blue of the Nord palette. It still needs a lot of work. Here are a few things you can try: require 'nordic' .setup {
theme = 'onedark',
cursorline = {
theme = 'dark',
}
} require 'nordic' .setup {
theme = 'onedark',
override = {
CursorLine = {
bg = '#000000', -- Choose a color you like.
bold = true -- Or false.
}
}
} |
Please leave this issue open, as this is something that I want to fix. |
You were partially correct, it looks like what I was looking for was the "Visual" parameter and not the "CursorLine". I was able to update the visual selection and the end result of the config is as such
|
Ah, of course. Apologies for the wrong information, it has been a while since I last worked on the plugin (finishing my thesis). Should start fixing things again quite soon. |
The reason I got confused with |
Since you are the first person (other than me) that opted for the |
Thank you!
Now that you mention it, I could add an option that removes the
When I asked this, I was actually referring to the mixing of the Nord and Onedark colors. |
Hi @speri203, are you still using this theme? I am considering removing the onedark variant to reduce the maintenance surface for myself. |
Yes, I am. Sorry for the delayed response. I am currently out of the
country and don't have access to my phone for 2FA. I am locked out of
Github.
I understand where you are coming from and I have no problem switching to
the regular Nordic variant. I use the OneDark variant due to the background
color more suiting what I like but I can easily override this on the normal
version. Keep up the good work and I wish you the best of luck on your
thesis defense!
…On Sun, Jun 25, 2023 at 5:20 PM Alexander van Zyl ***@***.***> wrote:
Hi @speri203 <https://github.com/speri203>, are you still using this
theme? I am considering removing this to reduce the maintenance surface for
myself.
—
Reply to this email directly, view it on GitHub
<#49 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIZIMP56HI63HZBS6GMHU3DXNAQXZANCNFSM6AAAAAAWGHTYLY>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
*-- Sai Peri*
|
Thank you! I decided to no longer maintain this theme, but you could this, it's something I am working on: require 'nordic' .setup {
swap_backgrounds = true
cursorline = { theme = 'light' },
} |
I have tried these two settings but don’t notice anything different. Are they supposed to be run on the onedark variation?Sent from my iPhoneOn Jul 6, 2023, at 6:57 PM, Alexander van Zyl ***@***.***> wrote:
Keep up the good work and I wish you the best of luck on your thesis defense!
Thank you!
You could this, something I am working on:
require 'nordic' .setup {
swap_backgrounds = true
cursorline = { theme = 'light' },
}
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Just tested that config on my system, it works. Do you have the latest version? |
What do these two config settings do exactly? Maybe they are working but I am just not looking for it. My config looks like this and I am currently on commit: ec2936c
return {
"AlexvZyl/nordic.nvim",
lazy = true,
priority = 1000,
config = function()
require("nordic").setup {
theme = "nordic",
bold_keywords = true,
bright_border = true,
swap_background = true,
cursorline = { theme = "light" },
onedark = {
brighter_whites = true,
},
override = {
Visual = {
-- bg = "#BF616A", -- Choose a color you like.,
bg = "#B46950",
-- bg = "#5E81AC",
bold = true, -- Or false.,
},
CursorLineNr = {
fg = "#fabd2f",
bold = true,
},
},
noice = {
style = "flat",
},
telescope = {
style = "flat",
},
}
end,
}
… On Jul 10, 2023, at 10:03 PM, Alexander van Zyl ***@***.***> wrote:
Just tested that config on my system, it works. Do you have the latest version?
—
Reply to this email directly, view it on GitHub <#49 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AIZIMP2CZWAEE4ZU572BXU3XPQVGHANCNFSM6AAAAAAWGHTYLY>.
You are receiving this because you were mentioned.
|
It is |
Ahh I got you, looks incredible, thank you for the change!
… On Jul 11, 2023, at 6:31 PM, Alexander van Zyl ***@***.***> wrote:
It is swap_backgrounds (plural), not swap_background (singular).
—
Reply to this email directly, view it on GitHub <#49 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AIZIMP4BOFTIMCREV6CMUYLXPVFCFANCNFSM6AAAAAAWGHTYLY>.
You are receiving this because you were mentioned.
|
When highlighting in visual mode the background of what is being highlighted is impossible to see. In the screenshot the ASCI art is highlighted in visual mode its almost impossible to distinguish from the background. Could the highlighting color be changed? If so, what is the procedure to do so?
The text was updated successfully, but these errors were encountered: