trying out nix

This commit is contained in:
snarmph 2026-02-18 14:32:37 +01:00
commit 65bd68a260
18 changed files with 1217 additions and 0 deletions

11
lua/colorini/init.lua Normal file
View file

@ -0,0 +1,11 @@
local M = {}
local core = require('colorini.core')
local highlights = require('colorini.highlights')
function M.setup(base)
local colors = core.get_colors()
vim.opt.termguicolors = true
highlights.highlight_all(colors, base)
end
return M