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.
62 lines
1.5 KiB
Lua
62 lines
1.5 KiB
Lua
local M = {}
|
|
|
|
local flavours = { "latte", "frappe", "macchiato", "mocha" }
|
|
|
|
local command = vim.api.nvim_create_user_command
|
|
|
|
command("Catppuccin", function(inp)
|
|
if not vim.tbl_contains(flavours, inp.args) then
|
|
require("catppuccin.utils.echo")("Invalid flavour")
|
|
return
|
|
end
|
|
vim.g.catppuccin_flavour = inp.args
|
|
vim.cmd("colorscheme catppuccin")
|
|
end, {
|
|
nargs = 1,
|
|
complete = function(line)
|
|
return vim.tbl_filter(function(val)
|
|
return vim.startswith(val, line)
|
|
end, flavours)
|
|
end,
|
|
})
|
|
|
|
function M.load()
|
|
local compiled = nil
|
|
local config = require("catppuccin.config").options
|
|
|
|
if config.compile.enabled == true then
|
|
local compiled_path = config.compile.path
|
|
.. (vim.startswith(vim.loop.os_uname().sysname, "Windows") and "\\" or "/")
|
|
.. vim.g.catppuccin_flavour
|
|
.. config.compile.suffix
|
|
.. ".lua"
|
|
local f = io.open(compiled_path, "r")
|
|
if f ~= nil then
|
|
io.close(f)
|
|
vim.cmd("luafile " .. compiled_path)
|
|
compiled = true
|
|
end
|
|
end
|
|
|
|
if not compiled then -- colorscheme gets evaluated from mapper.lua
|
|
require("catppuccin.lib.highlighter").load(require("catppuccin.lib.mapper").apply())
|
|
end
|
|
end
|
|
|
|
function M.setup(custom_opts)
|
|
require("catppuccin.config").set_options(custom_opts)
|
|
|
|
-- Only set compile commands when enabled = true
|
|
if custom_opts.compile.enabled == true then
|
|
command("CatppuccinCompile", function()
|
|
require("catppuccin.lib.compiler").compile()
|
|
end, {})
|
|
|
|
command("CatppuccinClean", function()
|
|
require("catppuccin.lib.compiler").clean()
|
|
end, {})
|
|
end
|
|
end
|
|
|
|
return M
|