feat(nvim): nixify theming (and add 'vscode' theme)
check / lint (push) Failing after 15s

This commit is contained in:
2026-08-25 23:29:37 +02:00
parent 5f8f8c4251
commit be15e8ba00
9 changed files with 148 additions and 82 deletions
@@ -0,0 +1,14 @@
local function overrides()
local colors = require("vscode.colors").get_colors()
vim.api.nvim_set_hl(0, "NormalFloat", { bg = colors.vscLeftDark })
vim.api.nvim_set_hl(0, "FloatBorder", { fg = colors.vscSplitDark, bg = colors.vscLeftDark })
end
vim.api.nvim_create_autocmd("ColorScheme", {
pattern = "vscode",
callback = overrides,
})
if vim.g.colors_name == "vscode" then
overrides()
end