-
Notifications
You must be signed in to change notification settings - Fork 167
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
Colors for lsp saga #176
Comments
Thanks! |
You could try doing it using onedark's setup function: require('onedark').setup({
highlights = {
SagaTitle = { fg = 'red', bg = '$cyan' }
}
}) If that does not work, you can do it yourself using nvim's api: vim.api.nvim_set_hl(0, 'SagaTitle', { fg = 'red', bg = '<cant use onedarks variables here>' }) Of course, this could go in your |
Thanks a lot! I'll try it 😄 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! First of all, thanks for this great theme. It's my favorite!
I'd like to know how to change colors for lspsaga, like borders (instead gray, I'd like to be cyan, etc).
Attach a screen.
This is an example when I open up
hover_doc
is different (and quite ugly) toshow_inline_diagnostics
The text was updated successfully, but these errors were encountered: