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