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 util = require("catppuccino.utils.util")
local M = {}
function M.get(cpt)
return { return {
BufferCurrent = {bg = cpt.fg_gutter, fg = cpt.fg}, BufferCurrent = {bg = cpt.fg_gutter, fg = cpt.fg},
BufferCurrentIndex = {bg = cpt.fg_gutter, fg = cpt.info}, BufferCurrentIndex = {bg = cpt.fg_gutter, fg = cpt.info},
@ -19,3 +22,6 @@ return {
BufferTabpages = {bg = cpt.bg_statusline, fg = cpt.none}, BufferTabpages = {bg = cpt.bg_statusline, fg = cpt.none},
BufferTabpage = {bg = cpt.bg_statusline, fg = cpt.border_highlight} BufferTabpage = {bg = cpt.bg_statusline, fg = cpt.border_highlight}
} }
end
return M

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

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

@ -1,5 +1,10 @@
local M = {}
function M.get(cpt)
return { return {
GitGutterAdd = {fg = cpt.gitSigns.add}, -- diff mode: Added line |diff.txt| GitGutterAdd = {fg = cpt.gitSigns.add}, -- diff mode: Added line |diff.txt|
GitGutterChange = {fg = cpt.gitSigns.change}, -- diff mode: Changed 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| 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 { return {
GitSignsAdd = {fg = cpt.diff.add, bg = cpt.bg}, -- diff mode: Added line |diff.txt| 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| 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| 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 { return {
DiagnosticError = {fg = cpt.error}, DiagnosticError = {fg = cpt.error},
DiagnosticWarning = {fg = cpt.warning}, DiagnosticWarning = {fg = cpt.warning},
@ -20,3 +23,5 @@ return {
ReferencesIcon = {fg = cpt.blue}, ReferencesIcon = {fg = cpt.blue},
TargetWord = {fg = cpt.cyan} TargetWord = {fg = cpt.cyan}
} }
end
return M

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

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

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

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

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

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

Loading…
Cancel
Save