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

View file

@ -0,0 +1,11 @@
local M = {}
local config = require('colorini.config')
function M.highlight_all(colors, base)
local base_highlights = config.highlights_base(colors, base)
for group, properties in pairs(base_highlights) do
vim.api.nvim_set_hl(0, group, properties)
end
end
return M