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

12 lines
177 B
Lua

local M = {}
function M.load()
require("catppuccin.main").main("load")
end
function M.setup(custom_opts)
require("catppuccin.config").set_options(custom_opts)
end
return M