diff options
author | Squibid <me@zacharyscheiman.com> | 2025-01-24 13:56:11 -0600 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2025-01-24 13:56:11 -0600 |
commit | 8eaa615596be321a3be12378c5e7d65cc7e482b6 (patch) | |
tree | 53fe601048ea302962420de4feff465e4c7d9317 /lua/conf/plugins/mellow.lua | |
parent | a0ebc39b59a98a69fbb6abf150f86dc4e19987a3 (diff) | |
download | nvim-8eaa615596be321a3be12378c5e7d65cc7e482b6.tar.gz nvim-8eaa615596be321a3be12378c5e7d65cc7e482b6.tar.bz2 nvim-8eaa615596be321a3be12378c5e7d65cc7e482b6.zip |
Diffstat (limited to 'lua/conf/plugins/mellow.lua')
-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 } |