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.
nvim/lua/catppuccino/init.lua

25 lines
499 B
Lua

local M = {}
function M.load()
3 years ago
local catppuccino = require("catppuccino")
if (catppuccino.before_loading ~= nil) then
catppuccino.before_loading()
end
require("catppuccino.main").main("load")
3 years ago
if (catppuccino.after_loading ~= nil) then
catppuccino.after_loading()
end
end
function M.setup(custom_opts, remaps)
remaps = remaps or {}
require("catppuccino.config").set_options(custom_opts)
require("catppuccino.core.cs").set_remaps(remaps)
end
return M