mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-24 16:28:22 -05:00
neovim: nord highlight groups for lsp
This commit is contained in:
parent
584e77b933
commit
26a8058564
@ -22,6 +22,7 @@
|
||||
- [x] Migrate zsh to [zinit](https://github.com/zdharma/zinit)
|
||||
- [x] Wayland compositors
|
||||
- [x] New Neovim config in Lua
|
||||
- [ ] OneDark highlight groups
|
||||
- [ ] ~~[ion](https://github.com/redox-os/ion)~~ / [oksh](https://github.com/ibara/oksh) / [nushell](https://www.nushell.sh/) / [oil](https://www.oilshell.org/) / [xonsh](https://xon.sh/) / ~~[elvish](https://elv.sh/)~~ / [oh](https://github.com/michaelmacinnis/oh)
|
||||
- [ ] NixOS / Guix / Gentoo / FreeBSD
|
||||
- [ ] Independent ~/.emacs.d
|
||||
|
@ -226,7 +226,33 @@ end
|
||||
|
||||
-- LSP groups
|
||||
local function highlight_lsp()
|
||||
-- TODO
|
||||
hi('LspDiagnosticsDefaultError', c.red, '', '', '')
|
||||
hi('LspDiagnosticsSignError', c.red, '', '', '')
|
||||
hi('LspDiagnosticsFloatingError', c.red, '', '', '')
|
||||
hi('LspDiagnosticsVirtualTextError', c.red, '', 'italic', '')
|
||||
hi('LspDiagnosticsUnderlineError', '', '', 'undercurl', c.red)
|
||||
|
||||
hi('LspDiagnosticsDefaultWarning', c.yellow, '', '', '')
|
||||
hi('LspDiagnosticsSignWarning', c.yellow, '', '', '')
|
||||
hi('LspDiagnosticsFloatingWarning', c.yellow, '', '', '')
|
||||
hi('LspDiagnosticsVirtualTextWarning', c.yellow, '', 'italic', '')
|
||||
hi('LspDiagnosticsUnderlineWarning', '', '', 'undercurl', c.yellow)
|
||||
|
||||
hi('LspDiagnosticsDefaultInformation', c.blue, '', '', '')
|
||||
hi('LspDiagnosticsSignInformation', c.blue, '', '', '')
|
||||
hi('LspDiagnosticsFloatingInformation', c.blue, '', '', '')
|
||||
hi('LspDiagnosticsVirtualTextInformation', c.blue, '', 'italic', '')
|
||||
hi('LspDiagnosticsUnderlineInformation', '', '', 'undercurl', c.blue)
|
||||
|
||||
hi('LspDiagnosticsDefaultHint', c.cyan, '', '', '')
|
||||
hi('LspDiagnosticsSignHint', c.cyan, '', '', '')
|
||||
hi('LspDiagnosticsFloatingHint', c.cyan, '', '', '')
|
||||
hi('LspDiagnosticsVirtualTextHint', c.cyan, '', 'italic', '')
|
||||
hi('LspDiagnosticsUnderlineHint', '', '', 'undercurl', c.cyan)
|
||||
|
||||
hi('LspReferenceText', c.fg, c.grey_bright, '', '')
|
||||
hi('LspReferenceRead', c.fg, c.grey_bright, '', '')
|
||||
hi('LspReferenceWrite', c.fg, c.grey_bright, '', '')
|
||||
end
|
||||
|
||||
-- Specify groups for plugins
|
||||
|
Loading…
Reference in New Issue
Block a user