From 4a90bd3fb154b1aa5ef592130a58c93c9c49bfa0 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sat, 18 Jul 2026 11:52:21 -0400 Subject: [PATCH] matugen/neovim: respect terminalsAlwaysDark port 1.5 --- quickshell/matugen/templates/neovim-colors.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/quickshell/matugen/templates/neovim-colors.lua b/quickshell/matugen/templates/neovim-colors.lua index eb6db53ce..9f1c45754 100644 --- a/quickshell/matugen/templates/neovim-colors.lua +++ b/quickshell/matugen/templates/neovim-colors.lua @@ -44,6 +44,10 @@ if mode ~= nil then end end +if settings.terminalsAlwaysDark then + vim.o.background = "dark" +end + local current_file_path = debug.getinfo(1, "S").source:sub(2) local theme_base = deepGet(settings, { "matugenTemplateNeovimSettings", vim.o.background, "baseTheme" }) or ("github_" .. vim.o.background)