🎨 Style(colorschemes): allow auto-dark-mode toggle but disable it by default

This commit is contained in:
2025-02-17 18:58:07 -05:00
parent 59acf6175c
commit e1a00ac2da
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ vim.o.background = "dark" ---@type string Options: <dark|l
-- Disable Transparency
vim.g.disable_transparency = true ---@type boolean Options: <true|false>
-- Auto Dark-mode
vim.g.autodarkmode = true ---@type boolean Options: <true|false>
vim.g.autodarkmode = false ---@type boolean Options: <true|false>
-- Set colorcolumn
--vim.opt.colorcolumn = "120" ---@type string|table Options: [column]
--Use Astral colorscheme management
+6
View File
@@ -142,4 +142,10 @@ return {
-- event = 'BufReadPre',
-- opts = require('data.types').hightlight_colors,
-- },
{ -- Auto Dark Mode
'f-person/auto-dark-mode.nvim',
lazy = true,
opts = require('data.types').auto_dark_mode,
cond = require('data.cond').auto_dark_mode,
},
}