We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add akinsho/git-conflict.nvim plugin. The default colors looks way of
Please add some colors for the highlight groups. I changed the colors based on VSCode, but I'm sure you can find much more appealing colors.
I used these colors
vim.api.nvim_set_hl(0, "GitConflictCurrent", { bg = "#25403B" }) vim.api.nvim_set_hl(0, "GitConflictIncoming", { bg = "#25394B" }) vim.api.nvim_set_hl(0, "GitConflictAncestor", { bg = "#282828" })
with this config:
{ "akinsho/git-conflict.nvim", version = "*", opts = { disable_diagnostics = true, highlights = { current = "GitConflictCurrent", incoming = "GitConflictIncoming", ancestor = "GitConflictAncestor", }, }, },
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Did you check the docs?
Is your feature request related to a problem? Please describe.
Add akinsho/git-conflict.nvim plugin. The default colors looks way of
Describe the solution you'd like
Please add some colors for the highlight groups. I changed the colors based on VSCode, but I'm sure you can find much more appealing colors.
Describe alternatives you've considered
I used these colors
with this config:
Additional context
No response
The text was updated successfully, but these errors were encountered: