-
Notifications
You must be signed in to change notification settings - Fork 105
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
No highlighting on git diffs on theme dracula on neovim #75
Comments
Diffview also has no highlighting for changed code (added/deleted has green/red background). It works well in Tokyonight theme. It uses darken method: https://github.com/folke/tokyonight.nvim/blob/735e94f3b36ae8b0caa30d1806eb2fa1c3619ca6/lua/tokyonight/colors.lua#LL119C8-L119C8 |
I added the necessary overrides to make it look better: overrides = {
DiffAdd = { bg = darken(colors.bright_green, 0.15) },
DiffDelete = { fg = colors.bright_red },
DiffChange = { bg = darken(colors.comment, 0.15) },
DiffText = { bg = darken(colors.comment, 0.50) },
illuminatedWord = { bg = darken(colors.comment, 0.65) },
illuminatedCurWord = { bg = darken(colors.comment, 0.65) },
IlluminatedWordText = { bg = darken(colors.comment, 0.65) },
IlluminatedWordRead = { bg = darken(colors.comment, 0.65) },
IlluminatedWordWrite = { bg = darken(colors.comment, 0.65) },
}, I copied
|
I will implement it this weekend |
Looking forward to this change :) meanwhile using @lucasrabiec override configuration. |
Would also love to see this change :D |
Plugin: fugitive
Command: Gdiffsplit HEAD~1
Plugin manager: lazy
Expecting: diff hightlighting
When changing to built-in theme slate it works
:colorscheme slate
Tried: loading theme first by setting priority in lazy as in the example
https://github.com/folke/lazy.nvim#examples
However... when I delete a block in my working copy, then hightlighting works.
Kind of solved:
I manually added this and it worked:
The text was updated successfully, but these errors were encountered: