trying out nix
This commit is contained in:
commit
65bd68a260
18 changed files with 1217 additions and 0 deletions
11
lua/colorini/highlights.lua
Normal file
11
lua/colorini/highlights.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue