mirror of https://github.com/sgoudham/nvim.git
dev (formatter): formatted with StyLua lualine and lightline
parent
32346db348
commit
4eed8788a7
@ -1,44 +1,46 @@
|
|||||||
local good, color_scheme = require("catppuccino.core.cs").get_color_scheme(require("catppuccino.config").options["cptcheme"])
|
local good, color_scheme = require("catppuccino.core.cs").get_color_scheme(
|
||||||
|
require("catppuccino.config").options["cptcheme"]
|
||||||
|
)
|
||||||
|
|
||||||
if not good then
|
if not good then
|
||||||
print(color_scheme) -- error message
|
print(color_scheme) -- error message
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local cpt = color_scheme
|
local cpt = color_scheme
|
||||||
local catppuccino = {}
|
local catppuccino = {}
|
||||||
|
|
||||||
catppuccino.normal = {
|
catppuccino.normal = {
|
||||||
left = {{cpt.black, cpt.blue}, {cpt.blue, cpt.bg}},
|
left = { { cpt.black, cpt.blue }, { cpt.blue, cpt.bg } },
|
||||||
middle = {{cpt.blue, cpt.fg_gutter}},
|
middle = { { cpt.blue, cpt.fg_gutter } },
|
||||||
right = {{cpt.fg_sidebar, cpt.bg_statusline}, {cpt.blue, cpt.bg}},
|
right = { { cpt.fg_sidebar, cpt.bg_statusline }, { cpt.blue, cpt.bg } },
|
||||||
error = {{cpt.black, cpt.error}},
|
error = { { cpt.black, cpt.error } },
|
||||||
warning = {{cpt.black, cpt.warning}}
|
warning = { { cpt.black, cpt.warning } },
|
||||||
}
|
}
|
||||||
|
|
||||||
catppuccino.insert = {
|
catppuccino.insert = {
|
||||||
left = {{cpt.black, cpt.green}, {cpt.blue, cpt.bg}}
|
left = { { cpt.black, cpt.green }, { cpt.blue, cpt.bg } },
|
||||||
}
|
}
|
||||||
|
|
||||||
catppuccino.visual = {
|
catppuccino.visual = {
|
||||||
left = {{cpt.black, cpt.magenta}, {cpt.blue, cpt.bg}}
|
left = { { cpt.black, cpt.magenta }, { cpt.blue, cpt.bg } },
|
||||||
}
|
}
|
||||||
|
|
||||||
catppuccino.replace = {
|
catppuccino.replace = {
|
||||||
left = {{cpt.black, cpt.red}, {cpt.blue, cpt.bg}}
|
left = { { cpt.black, cpt.red }, { cpt.blue, cpt.bg } },
|
||||||
}
|
}
|
||||||
|
|
||||||
catppuccino.inactive = {
|
catppuccino.inactive = {
|
||||||
left = {{cpt.blue, cpt.bg_statusline}, {cpt.comment, cpt.bg}},
|
left = { { cpt.blue, cpt.bg_statusline }, { cpt.comment, cpt.bg } },
|
||||||
middle = {{cpt.fg_gutter, cpt.bg_statusline}},
|
middle = { { cpt.fg_gutter, cpt.bg_statusline } },
|
||||||
right = {{cpt.fg_gutter, cpt.bg_statusline}, {cpt.comment, cpt.bg}}
|
right = { { cpt.fg_gutter, cpt.bg_statusline }, { cpt.comment, cpt.bg } },
|
||||||
}
|
}
|
||||||
|
|
||||||
catppuccino.tabline = {
|
catppuccino.tabline = {
|
||||||
left = {{cpt.comment, cpt.bg_highlight}, {cpt.comment, cpt.bg}},
|
left = { { cpt.comment, cpt.bg_highlight }, { cpt.comment, cpt.bg } },
|
||||||
middle = {{cpt.fg_gutter, cpt.bg_statusline}},
|
middle = { { cpt.fg_gutter, cpt.bg_statusline } },
|
||||||
right = {{cpt.fg_gutter, cpt.bg_statusline}, {cpt.comment, cpt.bg}},
|
right = { { cpt.fg_gutter, cpt.bg_statusline }, { cpt.comment, cpt.bg } },
|
||||||
tabsel = {{cpt.blue, cpt.fg_gutter}, {cpt.comment, cpt.bg}}
|
tabsel = { { cpt.blue, cpt.fg_gutter }, { cpt.comment, cpt.bg } },
|
||||||
}
|
}
|
||||||
|
|
||||||
return catppuccino
|
return catppuccino
|
||||||
|
Loading…
Reference in New Issue