Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(feline): fix feline integration #685

Merged
merged 2 commits into from Mar 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions lua/catppuccin/groups/integrations/feline.lua
Expand Up @@ -26,7 +26,7 @@ local assets = {

local sett = {
text = C.mantle,
bkg = C.mantle,
bkg = C.surface0,
89iuv marked this conversation as resolved.
Show resolved Hide resolved
diffs = C.mauve,
extras = C.overlay1,
curr_file = C.maroon,
Expand Down Expand Up @@ -71,7 +71,11 @@ function M.setup(opts)
opts.sett = opts.sett or {}
opts.mode_colors = opts.mode_colors or {}
else
opts = {}
opts = {
assets = {},
sett = {},
89iuv marked this conversation as resolved.
Show resolved Hide resolved
mode_colors = {},
}
end
assets = vim.tbl_deep_extend("force", assets, opts.assets)
sett = vim.tbl_deep_extend("force", sett, opts.sett)
Expand Down