diff --git a/README.md b/README.md index 6d6960f..1dbe02c 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ vscode.nvim (formerly `codedark.nvim`) is a Lua port of [vim-code-dark](https:// - [vim-illuminate](https://github.com/RRethy/vim-illuminate) - [rainbow-delimiters](https://gitlab.com/HiPhish/rainbow-delimiters.nvim) - [which-key](https://github.com/folke/which-key.nvim) +- [Snacks.dashboard](https://github.com/folke/snacks.nvim/blob/main/docs/dashboard.md) - [Snacks.indent](https://github.com/folke/snacks.nvim/blob/main/docs/indent.md) ## ⬇️ Installation diff --git a/lua/vscode/theme.lua b/lua/vscode/theme.lua index 4b2a486..d5ba838 100644 --- a/lua/vscode/theme.lua +++ b/lua/vscode/theme.lua @@ -703,6 +703,14 @@ theme.set_highlights = function(opts) hl(0, 'DashboardKey', { fg = c.vscWhite, bg = 'NONE' }) hl(0, 'DashboardFooter', { fg = c.vscBlue, bg = 'NONE', italic = true }) + -- Snacks.Dashboard + hl(0, 'SnacksDashboardHeader', { fg = c.vscBlue, bg = 'NONE' }) + hl(0, 'SnacksDashboardDesc', { fg = c.vscYellow, bg = 'NONE' }) + hl(0, 'SnacksDashboardIcon', { fg = c.vscYellowOrange, bg = 'NONE' }) + hl(0, 'SnacksDashboardKey', { fg = c.vscPink, bg = 'NONE' }) + hl(0, 'SnacksDashboardFooter', { fg = c.vscBlue, bg = 'NONE', italic = true }) + hl(0, 'SnacksDashboardSpecial', { fg = c.vscYellowOrange, bg = 'NONE', italic = true }) + -- Illuminate hl(0, 'illuminatedWord', { bg = isDark and c.vscPopupHighlightGray or c.vscPopupHighlightLightBlue }) hl(0, 'illuminatedCurWord', { bg = isDark and c.vscPopupHighlightGray or c.vscPopupHighlightLightBlue })