revert: "feat: enable dms theme, if available"

This reverts commit 159e95081d.
This commit is contained in:
2026-07-12 08:19:21 +02:00
parent 159e95081d
commit 55e32e7a5a
+2 -13
View File
@@ -129,23 +129,12 @@ return {
SnacksDashboardTitle = { fg = "palette.turquoise" },
SnacksIndentScope = { fg = "palette.lightblue" },
NormalFloat = { bg = "palette.bgDark" },
Directory = { fg = "palette.cyan" },
Directory = { fg = "palette.cyan" }
},
},
})
if not vim.g.vscode then
local function apply()
local files = vim.fn.globpath(vim.o.runtimepath, "colors/*", false, true) ---@type string[]
for _, file in ipairs(files) do
local name = vim.fn.fnamemodify(file, ":t:r")
if name == "dms" then
vim.cmd.colorscheme("dms")
return
end
end
vim.cmd.colorscheme("carbonfox")
end
apply()
vim.cmd.colorscheme('carbonfox')
end
end,
}