Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
genzyy committed Feb 10, 2024
1 parent 7e63eed commit b2c9ee3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
4 changes: 2 additions & 2 deletions colors/embark.lua
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
vim.o.background = "dark"
require("embark").colorscheme()
vim.o.background = 'dark'
require('embark').colorscheme()
22 changes: 8 additions & 14 deletions lua/embark/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ M.colorscheme = function()
highlight(0, 'WhichKeyValue', { fg = colors.norm })

-- lspsaga
highlight(0, 'DiagnosticWarning', { link = "DiagnosticWarn" })
highlight(0, 'DiagnosticInformation', { link = "DiagnosticInfo" })
highlight(0, 'DiagnosticWarning', { link = 'DiagnosticWarn' })
highlight(0, 'DiagnosticInformation', { link = 'DiagnosticInfo' })

-- neovim
highlight(0, 'healthError', { fg = colors.dark_red })
Expand Down Expand Up @@ -386,18 +386,12 @@ M.colorscheme = function()

-- dashboard
highlight(0, 'DashboardShortCut', { fg = colors.cyan })
highlight(0, 'DashboardHeader', { fg = colors.blue }
)
highlight(0, 'DashboardCenter', { fg = colors.magenta }
)
highlight(0, 'DashboardFooter', { fg = colors.blue }
)
highlight(0, 'DashboardKey', { fg = colors.red }
)
highlight(0, 'DashboardDesc', { fg = colors.cyan }
)
highlight(0, 'DashboardIcon', { fg = colors.cyan, bold = true }
)
highlight(0, 'DashboardHeader', { fg = colors.blue })
highlight(0, 'DashboardCenter', { fg = colors.magenta })
highlight(0, 'DashboardFooter', { fg = colors.blue })
highlight(0, 'DashboardKey', { fg = colors.red })
highlight(0, 'DashboardDesc', { fg = colors.cyan })
highlight(0, 'DashboardIcon', { fg = colors.cyan, bold = true })

-- alpha
highlight(0, 'AlphaShortcut', { fg = colors.red })
Expand Down

0 comments on commit b2c9ee3

Please sign in to comment.