Remove debug messages

This commit is contained in:
Jan Polak 2023-10-31 20:18:11 +01:00
parent 775bdb632a
commit 2717913a11
3 changed files with 0 additions and 6 deletions

View File

@ -7,8 +7,6 @@ local M = {}
M.colorscheme = function(opts)
config.extend(opts)
print(config.options.variant)
vim.o.termguicolors = true
if vim.g.colors_name then

View File

@ -112,8 +112,6 @@ local variants = {
}
M.palette = function ()
print(config.options.variant)
if config.options.variant == 'auto' then
if vim.o.background == 'dark' then
return variants[config.options.dark_variant]

View File

@ -7,8 +7,6 @@ local M = {}
M.set_highlights = function()
local c = palette.palette()
print(c._name)
-- highlights
hl(0, "Normal", { fg = c.fg, bg = c.bg })
hl(0, "SignColumn", { fg = 'NONE', bg = c.bg })