diff options
author | Abouzar Parvan <[email protected]> | 2021-10-02 18:04:38 +0330 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-02 18:04:38 +0330 |
commit | 1e0d0181d55abe1e4248b3aeaded94cbf3308168 (patch) | |
tree | 951ee845f7a9ffe97850e17652d2a473ddf24731 /lua/onedarker/LSP.lua | |
parent | 8e3cfb77e6b2e02100b937a590dc8d55c0255ecf (diff) |
feat: make lsp highlight color configurable (#1659)
Diffstat (limited to 'lua/onedarker/LSP.lua')
-rw-r--r-- | lua/onedarker/LSP.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/onedarker/LSP.lua b/lua/onedarker/LSP.lua index 0ed133fe..82b9f799 100644 --- a/lua/onedarker/LSP.lua +++ b/lua/onedarker/LSP.lua @@ -35,6 +35,9 @@ local LSP = { DiagnosticUnderlineWarn = { style = "underline" }, DiagnosticUnderlineInfo = { style = "underline" }, DiagnosticUnderlineHint = { style = "underline" }, + LspReferenceRead = { bg = C.fg_gutter, style = "bold" }, + LspReferenceText = { bg = C.fg_gutter, style = "bold" }, + LspReferenceWrite = { bg = C.fg_gutter, style = "bold" }, QuickScopePrimary = { fg = C.purple_test, style = "underline" }, QuickScopeSecondary = { fg = C.cyan_test, style = "underline" }, TelescopeSelection = { fg = C.hint_blue }, |