Tweak reference lsp colour, still needs thinking about.

This commit is contained in:
Michael Welford 2023-02-17 16:42:20 +10:30
parent 9c01e3450d
commit bc5d85a3b5
2 changed files with 10 additions and 9 deletions

View File

@ -6,6 +6,7 @@
* turning other on and off via command?
* turn on / off, there is a way to do that with lush, can create a command
- remove estilo remnants, can delete as we go
- consider changing the colour used re searching highlight, too close to strings?
- lightline and airline support?
- Include a lualine which does things depending on lsp settings e.g.
* could go completely red when there is an error for `errr`

View File

@ -66,21 +66,21 @@ end
local p = lush(function()
return {
LspCodeLens { } , -- Used to color the virtual text of the codelens. See |nvim_buf_set_extmark()|.
LspCodeLensSeparator { } , -- Used to color the seperator between two or more code lens.
LspReferenceRead {gui = styles.underline},
LspReferenceText {gui = styles.underline},
LspReferenceWrite {gui = styles.underline},
LspCodeLens { } , -- Used to colour the virtual text of the codelens. See |nvim_buf_set_extmark()|.
LspCodeLensSeparator { } , -- Used to colour the separator between two or more code lens.
LspReferenceRead {gui = styles.underline, sp = colours.blue_gray},
LspReferenceText {gui = styles.underline, sp = colours.blue_gray},
LspReferenceWrite {gui = styles.underline, sp = colours.blue_gray},
LspSignatureActiveParameter { } , -- Used to highlight the active parameter in the signature help. See |vim.lsp.handlers.signature_help()|.
DiagnosticError {fg = colours.mid_red}, -- Default error diagnostics
DiagnosticHint {fg = colours.darker_tan}, -- Default hint diagnostics
DiagnosticInfo {fg = colours.mid_gray}, -- Default info diagnostic
DiagnosticWarn {fg = colours.mid_yellow}, -- Default warn diagnostic
DiagnosticFloatingError { } , -- Used to color "Error" diagnostic messages in diagnostics float. See |vim.diagnostic.open_float()|
DiagnosticFloatingHint { } , -- Used to color "Hint" diagnostic messages in diagnostics float.
DiagnosticFloatingInfo { } , -- Used to color "Info" diagnostic messages in diagnostics float.
DiagnosticFloatingWarn { } , -- Used to color "Warn" diagnostic messages in diagnostics float.
DiagnosticFloatingError { } , -- Used to colour "Error" diagnostic messages in diagnostics float. See |vim.diagnostic.open_float()|
DiagnosticFloatingHint { } , -- Used to colour "Hint" diagnostic messages in diagnostics float.
DiagnosticFloatingInfo { } , -- Used to colour "Info" diagnostic messages in diagnostics float.
DiagnosticFloatingWarn { } , -- Used to colour "Warn" diagnostic messages in diagnostics float.
DiagnosticSignError {fg = colours.mid_red},
DiagnosticSignHint {fg = colours.darker_tan},
DiagnosticSignInfo {fg = colours.mid_gray},