Skip to content

Commit

Permalink
Merge pull request #42 from barrientosvctor/develop
Browse files Browse the repository at this point in the history
Fix several things
  • Loading branch information
barrientosvctor authored Nov 5, 2024
2 parents b2ed4d4 + bbc1c71 commit a1d6077
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions lua/abyss/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function M.get(user_opts)
QuickFixLine = { fg = colors.none, bg = colors.darkred },

Search = { fg = colors.black, bg = colors.yellow },
SpecialKey = { fg = colors.heavyyellow, bg = colors.none },
SpecialKey = { fg = colors.midblue, bg = colors.none },

SpellBad = { fg = colors.darkred, undercurl = true },
SpellRare = { fg = colors.yellow, undercurl = true },
Expand Down Expand Up @@ -207,7 +207,7 @@ function M.get(user_opts)
CmpItemAbbrMatch = { fg = colors.yellow, bold = true },
CmpItemAbbrMatchFuzzy = { fg = colors.lightgrey, bold = true },
CmpItemAbbr = { fg = colors.lighgrey },
CmpItemMenu = { fg = colors.lightgrey },
CmpItemMenu = { fg = colors.midblue, italic = true },
CmpItemKindText = { fg = colors.darkgreen },
CmpItemKindMethod = { fg = colors.yellow },
CmpItemKindFunction = { link = "CmpItemKindMethod" },
Expand Down Expand Up @@ -268,14 +268,12 @@ function M.get(user_opts)
TargetWord = { fg = colors.red },

-- nvim-tree
NvimTreeRootFolder = { fg = colors.heavyyellow, bold = true },
NvimTreeGitDirty = { fg = colors.orange },
NvimTreeGitNew = { fg = colors.green },
NvimTreeImageFile = { fg = colors.pink },
NvimTreeExecFile = { fg = colors.fg },
NvimTreeSpecialFile = { fg = colors.yellow, underline = true },
NvimTreeFolderName = { fg = colors.fg },
NvimTreeEmptyFolderName = { fg = colors.fg },
NvimTreeSpecialFile = { fg = colors.yellow, underline = true, italic = true },
NvimTreeEmptyFolderName = { fg = colors.darkgrey, bold = true },
NvimTreeFolderIcon = { fg = colors.shinyblue },
NvimTreeIndentMarker = { fg = colors.white },

Expand Down

0 comments on commit a1d6077

Please sign in to comment.