summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/mellow.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2025-05-06 16:51:24 -0500
committerSquibid <me@zacharyscheiman.com>2025-05-06 16:51:24 -0500
commit7c3289fded1f75f6e060f56bd06edc2a327744d9 (patch)
treebf579e6eb1de84237a74ef13ce67703c15266afe /lua/conf/plugins/mellow.lua
parent3094bf2a3983b375f4adeccd25c3b12bbbded2aa (diff)
downloadnvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.gz
nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.bz2
nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.zip
kitchen sink again :(
Diffstat (limited to 'lua/conf/plugins/mellow.lua')
-rw-r--r--lua/conf/plugins/mellow.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/lua/conf/plugins/mellow.lua b/lua/conf/plugins/mellow.lua
index 02bf7fd..f0ebf82 100644
--- a/lua/conf/plugins/mellow.lua
+++ b/lua/conf/plugins/mellow.lua
@@ -1,6 +1,6 @@
-return { 'mellow-theme/mellow.nvim',
+return { "mellow-theme/mellow.nvim",
disable = not vim.fn.has("nvim-0.8.0"),
- requires = 'nvim-treesitter/nvim-treesitter',
+ requires = "nvim-treesitter/nvim-treesitter",
function()
vim.g.mellow_variant = "dark"
local c = require("mellow.colors")[vim.g.mellow_variant]
@@ -10,26 +10,26 @@ return { 'mellow-theme/mellow.nvim',
["NormalNC"] = { link = "Normal" },
-- make floats darker
- ["NormalFloat"] = { fg = c.fg, bg = c.bg_dark },
+ ["NormalFloat"] = { fg = c.fg, bg = "#111111" },
["FloatBorder"] = { link = "NormalFloat" },
-- neorg headings, looks extra good with lukas-reineke/headlines.nvim
["@neorg.headings.1.title"] = { fg = c.yellow, bg = "#2a211c" },
["@neorg.headings.1.icon"] = { link = "@neorg.headings.1.title" },
- ["@neorg.headings.2.title"] = { fg = c.blue, bg = '#201e25' },
+ ["@neorg.headings.2.title"] = { fg = c.blue, bg = "#201e25" },
["@neorg.headings.2.icon"] = { link = "@neorg.headings.2.title" },
- ["@neorg.headings.3.title"] = { fg = c.cyan, bg = '#2b1b20' },
+ ["@neorg.headings.3.title"] = { fg = c.cyan, bg = "#2b1b20" },
["@neorg.headings.3.icon"] = { link = "@neorg.headings.3.title" },
- ["@neorg.headings.4.title"] = { fg = c.green, bg = '#1d201e' },
+ ["@neorg.headings.4.title"] = { fg = c.green, bg = "#1d201e" },
["@neorg.headings.4.icon"] = { link = "@neorg.headings.4.title" },
- ["@neorg.headings.5.title"] = { fg = c.magenta, bg = '#251a21' },
+ ["@neorg.headings.5.title"] = { fg = c.magenta, bg = "#251a21" },
["@neorg.headings.5.icon"] = { link = "@neorg.headings.5.title" },
- ["@neorg.headings.6.title"] = { fg = c.white, bg = '#212126' },
+ ["@neorg.headings.6.title"] = { fg = c.white, bg = "#212126" },
["@neorg.headings.6.icon"] = { link = "@neorg.headings.6.title" },
-- make blink actually look nice