LSP.lua 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. local LSP = {
  2. LspDiagnosticsDefaultError = { fg = C.error_red },
  3. LspDiagnosticsDefaultWarning = { fg = C.warning_orange },
  4. LspDiagnosticsDefaultInformation = { fg = C.info_yellow },
  5. LspDiagnosticsDefaultHint = { fg = C.hint_blue },
  6. LspDiagnosticsVirtualTextError = { fg = C.error_red },
  7. LspDiagnosticsVirtualTextWarning = { fg = C.warning_orange },
  8. LspDiagnosticsVirtualTextInformation = { fg = C.info_yellow },
  9. LspDiagnosticsVirtualTextHint = { fg = C.hint_blue },
  10. LspDiagnosticsFloatingError = { fg = C.error_red },
  11. LspDiagnosticsFloatingWarning = { fg = C.warning_orange },
  12. LspDiagnosticsFloatingInformation = { fg = C.info_yellow },
  13. LspDiagnosticsFloatingHint = { fg = C.hint_blue },
  14. LspDiagnosticsSignError = { fg = C.error_red },
  15. LspDiagnosticsSignWarning = { fg = C.warning_orange },
  16. LspDiagnosticsSignInformation = { fg = C.info_yellow },
  17. LspDiagnosticsSignHint = { fg = C.hint_blue },
  18. LspDiagnosticsError = { fg = C.error_red },
  19. LspDiagnosticsWarning = { fg = C.warning_orange },
  20. LspDiagnosticsInformation = { fg = C.info_yellow },
  21. LspDiagnosticsHint = { fg = C.hint_blue },
  22. LspDiagnosticsUnderlineError = { style = "underline" },
  23. LspDiagnosticsUnderlineWarning = { style = "underline" },
  24. LspDiagnosticsUnderlineInformation = { style = "underline" },
  25. LspDiagnosticsUnderlineHint = { style = "underline" },
  26. QuickScopePrimary = { fg = C.purple_test, style = "underline" },
  27. QuickScopeSecondary = { fg = C.cyan_test, style = "underline" },
  28. TelescopeSelection = { fg = C.hint_blue },
  29. TelescopeMatching = { fg = C.info_yellow, style = "bold" },
  30. TelescopeBorder = { fg = C.cyan, bg = Config.transparent_background and "NONE" or C.bg },
  31. TelescopePromptPrefix = { fg = C.purple },
  32. NvimTreeFolderIcon = { fg = C.blue },
  33. NvimTreeIndentMarker = { fg = C.gray },
  34. NvimTreeNormal = { fg = C.light_gray, bg = C.alt_bg },
  35. NvimTreeVertSplit = { fg = C.alt_bg, bg = C.alt_bg },
  36. NvimTreeFolderName = { fg = C.blue },
  37. NvimTreeOpenedFolderName = { fg = C.cyan, style = "italic" },
  38. NvimTreeImageFile = { fg = C.purple },
  39. NvimTreeSpecialFile = { fg = C.orange },
  40. NvimTreeGitStaged = { fg = C.sign_add },
  41. NvimTreeGitNew = { fg = C.sign_add },
  42. NvimTreeGitDirty = { fg = C.sign_add },
  43. NvimTreeGitDeleted = { fg = C.sign_delete },
  44. NvimTreeGitMerge = { fg = C.sign_change },
  45. NvimTreeGitRenamed = { fg = C.sign_change },
  46. NvimTreeSymlink = { fg = C.cyan },
  47. NvimTreeRootFolder = { fg = C.fg, style = "bold" },
  48. NvimTreeExecFile = { fg = C.green },
  49. LirFloatNormal = { fg = C.light_gray, bg = C.alt_bg },
  50. LirDir = { fg = C.blue },
  51. LirSymLink = { fg = C.cyan },
  52. LirEmptyDirText = { fg = C.blue },
  53. BufferCurrent = { fg = C.fg, bg = C.bg },
  54. BufferCurrentIndex = { fg = C.fg, bg = C.bg },
  55. BufferCurrentMod = { fg = C.info_yellow, bg = C.bg },
  56. BufferCurrentSign = { fg = C.hint_blue, bg = C.bg },
  57. BufferCurrentTarget = { fg = C.red, bg = C.bg, style = "bold" },
  58. BufferVisible = { fg = C.fg, bg = C.bg },
  59. BufferVisibleIndex = { fg = C.fg, bg = C.bg },
  60. BufferVisibleMod = { fg = C.info_yellow, bg = C.bg },
  61. BufferVisibleSign = { fg = C.gray, bg = C.bg },
  62. BufferVisibleTarget = { fg = C.red, bg = C.bg, style = "bold" },
  63. BufferInactive = { fg = C.gray, bg = C.alt_bg },
  64. BufferInactiveIndex = { fg = C.gray, bg = C.alt_bg },
  65. BufferInactiveMod = { fg = C.info_yellow, bg = C.alt_bg },
  66. BufferInactiveSign = { fg = C.gray, bg = C.alt_bg },
  67. BufferInactiveTarget = { fg = C.red, bg = C.alt_bg, style = "bold" },
  68. StatusLine = { fg = C.alt_bg },
  69. StatusLineNC = { fg = C.alt_bg },
  70. StatusLineSeparator = { fg = C.alt_bg },
  71. StatusLineTerm = { fg = C.alt_bg },
  72. StatusLineTermNC = { fg = C.alt_bg },
  73. CodiVirtualText = { fg = C.hint_blue },
  74. IndentBlanklineContextChar = { fg = C.context },
  75. IndentBlanklineChar = { fg = C.dark_gray },
  76. IndentBlanklineSpaceChar = { fg = C.cyan_test },
  77. IndentBlanklineSpaceCharBlankline = { fg = C.info_yellow },
  78. DashboardHeader = { fg = C.blue },
  79. DashboardCenter = { fg = C.purple },
  80. DashboardFooter = { fg = C.cyan },
  81. xmlTag = { fg = C.blue },
  82. xmlTagName = { fg = C.blue },
  83. xmlEndTag = { fg = C.blue },
  84. CompeDocumentation = { bg = C.alt_bg },
  85. DiffViewNormal = { fg = C.gray, bg = C.alt_bg },
  86. DiffviewStatusAdded = { fg = C.sign_add },
  87. DiffviewStatusModified = { fg = C.sign_change },
  88. DiffviewStatusRenamed = { fg = C.sign_change },
  89. DiffviewStatusDeleted = { fg = C.sign_delete },
  90. DiffviewFilePanelInsertion = { fg = C.sign_add },
  91. DiffviewFilePanelDeletion = { fg = C.sign_delete },
  92. DiffviewVertSplit = { bg = C.bg },
  93. diffAdded = { fg = C.sign_add },
  94. diffRemoved = { fg = C.sign_delete },
  95. diffFileId = { fg = C.blue, style = "bold,reverse" },
  96. diffFile = { fg = C.alt_bg },
  97. diffNewFile = { fg = C.green },
  98. diffOldFile = { fg = C.red },
  99. debugPc = { bg = C.cyan },
  100. debugBreakpoint = { fg = C.red, style = "reverse" },
  101. FocusedSymbol = { fg = C.purple, style = "bold" },
  102. SymbolsOutlineConnector = { fg = C.context },
  103. }
  104. return LSP