Initial commit

This commit is contained in:
2025-03-05 21:06:49 -05:00
commit 5a40f441b0
11 changed files with 472 additions and 0 deletions

23
lua/coral/init.lua Normal file
View File

@@ -0,0 +1,23 @@
local M = {}
M.config = {
undercurl = true,
commentStyle = { italic = true }
}
M.load = function()
if vim.g.colors_name then
vim.cmd('hi clear')
end
vim.g.colors_name = 'coral'
vim.o.termguicolors = true
local colors = require('coral.colors').setup(M.config)
local theme = require('coral.themes').setup(colors, M.config)
local highlights = require('coral.highlights').setup(theme, M.config)
require('coral.highlights').apply(highlights)
end
return M