You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
350 B
Lua

local ok, noirbuddy = pcall(require, "noirbuddy")
if not ok then
vim.notify("missing module noirbuddy", vim.log.levels.WARN)
return
end
local M = {}
M.config = {
preset = 'minimal',
colors = {
primary = '#BD93F9',
secondary = '#92a2d4',
},
}
M.setup = function()
-- noirbuddy.setup(M.config)
end
return M