mirror of https://github.com/sgoudham/nvim.git
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.
37 lines
742 B
Lua
37 lines
742 B
Lua
local M = {}
|
|
|
|
local utils = require("catppuccin.utils.util")
|
|
local flavours = {"latte", "frappe", "macchiato", "mocha"}
|
|
|
|
function M.cli_flavour_completion()
|
|
return vim.tbl_keys(require("catppuccin.utils.data").set_of(flavours))
|
|
end
|
|
|
|
local function load()
|
|
local catppuccin = require("catppuccin")
|
|
|
|
if catppuccin.before_loading ~= nil then
|
|
catppuccin.before_loading()
|
|
end
|
|
|
|
-- colorscheme gets evaluated from mapper.lua
|
|
local theme = require("catppuccin.core.mapper").apply()
|
|
utils.load(theme)
|
|
|
|
if catppuccin.after_loading ~= nil then
|
|
catppuccin.after_loading()
|
|
end
|
|
end
|
|
|
|
function M.main(option)
|
|
option = option or "load"
|
|
|
|
if option == "load" then
|
|
load()
|
|
else
|
|
print("catppuccin: option was not recognized")
|
|
end
|
|
end
|
|
|
|
return M
|