feat: my own neovim theme!

This commit is contained in:
Stevan Freeborn
2026-06-30 15:07:14 -05:00
commit a9d19660da
11 changed files with 659 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
local M = {}
M.options = {
styles = {
comments = { italic = true },
keywords = { italic = false },
functions = {},
variables = {},
types = {},
numbers = {},
operators = {},
strings = {},
conditionals = {},
loops = {},
},
}
function M.setup(opts)
M.options = vim.tbl_deep_extend("force", M.options, opts or {})
end
return M