Skip to content

Commit

Permalink
feat: dropbar and incline plugins partially supported
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Cancelinha committed Sep 24, 2024
1 parent b897528 commit 274a408
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions lua/nordern/plugs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ P.dap = {
DapUIUnavailable = { fg = C.night.c3, bg = C.none },
DapUIUnavailableNC = { fg = C.night.c3, bg = C.none },
DapUIValue = { fg = C.aurora.green, bg = C.none },
DapUIVariable = { fg = C.fg, bg = C.none, bold = true, underline = true },
DapUIVariable = { fg = C.fg, bg = C.none, bold = true, underline = true, sp = C.fg },
DapUIWatchesEmpty = { fg = C.aurora.red, bg = C.none },
DapUIWatchesError = { fg = C.aurora.red, bg = C.none },
DapUIWatchesValue = { fg = C.aurora.green, bg = C.none },
Expand Down Expand Up @@ -885,7 +885,7 @@ P.mini = {

P.avante = {
AvanteTitle = { fg = C.bg, bg = C.frost.turquoise },
AvanteSubtitle = { fg = C.bg, bg = C.frost.sea},
AvanteSubtitle = { fg = C.bg, bg = C.frost.sea },
AvanteAnnotation = { link = "Comment" },
AvanteSuggestion = { fg = C.night.c3, bg = C.none },
AvanteThirdTitle = { fg = C.bg, bg = C.aurora.green },
Expand All @@ -900,4 +900,13 @@ P.avante = {
AvanteConflictIncomingLabel = { fg = C.aurora.orange, bg = C.none },
}

P.incline = {
InclineNormal = { fg = C.none, bg = C.none },
InclineNormalNC = { fg = C.none, bg = C.none },
}

P.dropbar = {
DropBarIconKindFolder = { fg = C.frost.turquoise, bg = C.none }
}

return P

0 comments on commit 274a408

Please sign in to comment.