fix: all of the integrations were adapted

dev-assets
Pocco81 3 years ago
parent 0dec7a2049
commit 9df4a02436

@ -1,5 +1,8 @@
local util = require("catppuccino.utils.util")
local M = {}
function M.get(cpt)
return {
BufferCurrent = {bg = cpt.fg_gutter, fg = cpt.fg},
BufferCurrentIndex = {bg = cpt.fg_gutter, fg = cpt.info},
@ -19,3 +22,6 @@ return {
BufferTabpages = {bg = cpt.bg_statusline, fg = cpt.none},
BufferTabpage = {bg = cpt.bg_statusline, fg = cpt.border_highlight}
}
end
return M

@ -1,6 +1,12 @@
local M = {}
function M.get(cpt)
return {
DashboardShortCut = {fg = cpt.cyan},
DashboardHeader = {fg = cpt.yellow},
DashboardCenter = {fg = cpt.green},
DashboardFooter = {fg = cpt.orange, style = "italic"}
}
end
return M

@ -1,3 +1,9 @@
local M = {}
function M.get(cpt)
return {
FernBranchText = {fg = cpt.blue}
}
end
return M

@ -1,5 +1,10 @@
local M = {}
function M.get(cpt)
return {
GitGutterAdd = {fg = cpt.gitSigns.add}, -- diff mode: Added line |diff.txt|
GitGutterChange = {fg = cpt.gitSigns.change}, -- diff mode: Changed line |diff.txt|
GitGutterDelete = {fg = cpt.gitSigns.delete} -- diff mode: Deleted line |diff.txt|
}
end
return M

@ -1,5 +1,11 @@
local M = {}
function M.get(cpt)
return {
GitSignsAdd = {fg = cpt.diff.add, bg = cpt.bg}, -- diff mode: Added line |diff.txt|
GitSignsChange = {fg = cpt.diff.change, bg = cpt.bg}, -- diff mode: Changed line |diff.txt|
GitSignsDelete = {fg = cpt.diff.delete, bg = cpt.bg} -- diff mode: Deleted line |diff.txt|
}
end
return M

@ -1,3 +1,6 @@
local M = {}
function M.get(cpt)
return {
DiagnosticError = {fg = cpt.error},
DiagnosticWarning = {fg = cpt.warning},
@ -20,3 +23,5 @@ return {
ReferencesIcon = {fg = cpt.blue},
TargetWord = {fg = cpt.cyan}
}
end
return M

@ -1,5 +1,11 @@
local M = {}
function M.get(cpt)
return {
LspTroubleText = {fg = cpt.fg_alt},
LspTroubleCount = {fg = cpt.magenta, bg = cpt.fg_gutter},
LspTroubleNormal = {fg = cpt.fg_sidebar, bg = cpt.bg_sidebar}
}
end
return M

@ -1,3 +1,6 @@
local M = {}
function M.get(cpt)
return {
markdownHeadingDelimiter = {fg = cpt.orange, style = "bold"},
markdownCode = {fg = cpt.cyan},
@ -6,3 +9,6 @@ return {
markdownH2 = {fg = cpt.blue, style = "bold"},
markdownLinkText = {fg = cpt.blue, style = "underline"}
}
end
return M

@ -1,5 +1,7 @@
local util = require("catppuccino.utils.util")
local M = {}
function M.get(cpt)
return {
NeogitBranch = {fg = cpt.magenta},
NeogitRemote = {fg = cpt.pink},
@ -9,3 +11,6 @@ return {
NeogitDiffDeleteHighlight = {fg = cpt.git.delete, bg = cpt.diff.delete},
NeogitDiffAddHighlight = {fg = cpt.git.add, bg = cpt.diff.add}
}
end
return M

@ -1,6 +1,12 @@
local M = {}
function M.get(cpt)
return {
TelescopeBorder = {fg = cpt.border_highlight},
TelescopeSelectionCaret = {fg = cpt.cyan},
TelescopeSelection = {fg = cpt.cyan, bg = cpt.bg_highlight},
TelescopeMatching = {fg = cpt.blue}
}
end
return M

@ -1,4 +1,10 @@
local M = {}
function M.get(cpt)
return {
Sneak = {fg = cpt.bg_highlight, bg = cpt.magenta},
SneakScope = {bg = cpt.bg_visual}
}
end
return M

@ -1,3 +1,6 @@
local M = {}
function M.get(cpt)
return {
WhichKey = {fg = cpt.cyan},
WhichKeyGroup = {fg = cpt.blue},
@ -7,3 +10,6 @@ return {
WhichKeyFloat = {bg = cpt.bg_sidebar},
WhichKeyValue = {fg = cpt.comment}
}
end
return M

Loading…
Cancel
Save