commit 37730d8c1f07378db13ea3806cb4bfff88779e5e Author: Tommaso Negri Date: Tue Nov 4 13:13:49 2025 +0100 Initial commit diff --git a/colors/mycolortheme.lua b/colors/mycolortheme.lua new file mode 100644 index 0000000..c298b0d --- /dev/null +++ b/colors/mycolortheme.lua @@ -0,0 +1 @@ +require("mycolortheme").setup() diff --git a/lua/mycolortheme/init.lua b/lua/mycolortheme/init.lua new file mode 100644 index 0000000..fb8fb25 --- /dev/null +++ b/lua/mycolortheme/init.lua @@ -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