diff options
Diffstat (limited to '')
-rw-r--r-- | lua/conf/plugins/mellow.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lua/conf/plugins/mellow.lua b/lua/conf/plugins/mellow.lua index af805ed..11103ae 100644 --- a/lua/conf/plugins/mellow.lua +++ b/lua/conf/plugins/mellow.lua @@ -1,4 +1,5 @@ return { 'mellow-theme/mellow.nvim', + disable = vim.version().minor < 8, requires = 'nvim-treesitter/nvim-treesitter', function() vim.g.mellow_variant = "dark" @@ -29,7 +30,12 @@ return { 'mellow-theme/mellow.nvim', ["@neorg.headings.5.icon"] = { link = "@neorg.headings.5.title" }, ["@neorg.headings.6.title"] = { fg = c.white, bg = '#212126' }, - ["@neorg.headings.6.icon"] = { link = "@neorg.headings.6.title" } + ["@neorg.headings.6.icon"] = { link = "@neorg.headings.6.title" }, + + -- make blink actually look nice + ["BlinkCmpMenu"] = { bg = c.bg_dark }, + ["BlinkCmpMenuBorder"] = { link = "BlinkCmpMenu" }, + ["BlinkCmpMenuSelection"] = { bg = c.gray02 } } end } |