Compare commits

...

3 Commits

Author SHA1 Message Date
David JULIEN 8139cd14f0 cleanup: remove COQ highlights 2023-01-09 18:00:16 +01:00
David JULIEN a13015ab60 format: make lines tinier 2023-01-09 17:56:03 +01:00
David JULIEN 642c85db98 feat: add ColorColumn highlight: 2023-01-09 17:55:17 +01:00
1 changed files with 148 additions and 153 deletions

View File

@ -9,8 +9,8 @@ local M = {}
local g = vim.g
local static = {
coq_checked ="#36704f",
coq_sent ="#4b4b4b",
coq_checked = "#36704f",
coq_sent = "#4b4b4b",
}
-- Load terminal colors
@ -56,6 +56,7 @@ function M.load_colors(scheme)
CursorLineNr = { fg = scheme.orange, bg = scheme.none, scheme.none },
LineNr = { fg = scheme.grey, bg = scheme.none, scheme.none },
VertSplit = { fg = scheme.grey, bg = scheme.none, scheme.none },
ColorColumn = { fg = scheme.white, bg = scheme.red, scheme.bold },
SignColumn = { fg = scheme.yellow, bg = scheme.none, scheme.none },
Folded = { fg = scheme.orange, bg = scheme.background_alt, scheme.none },
@ -220,12 +221,6 @@ function M.load_colors(scheme)
CmpItemKindKeyword = { fg = scheme.orange, bg = scheme.none, scheme.none },
CmpItemKindFunction = { fg = scheme.blue, bg = scheme.none, scheme.none },
CmpItemKindMethod = { link = "CmpItemKindFunction" },
----------------
-- COQ COLORS --
----------------
CoqtailChecked = { fg = scheme.none, bg = static.coq_checked, scheme.none },
CoqtailSent = { fg = scheme.none, bg = static.coq_sent, scheme.none },
}
terminal_colors(scheme)