Initial commit

This commit is contained in:
Tommaso Negri
2025-11-04 13:13:49 +01:00
commit 37730d8c1f
2 changed files with 19 additions and 0 deletions

1
colors/mycolortheme.lua Normal file
View File

@@ -0,0 +1 @@
require("mycolortheme").setup()

18
lua/mycolortheme/init.lua Normal file
View File

@@ -0,0 +1,18 @@
local M = {}
function M.setup()
local colors = {
bg = "#000000",
fg = "#ffffff"
}
local highlights = {
Normal = { fg = colors.fg, bg = colors.bg }
}
for group, opts in pairs(highlights) do
vim.api.nvim_set_hl(0, group, opts)
end
end
return M