mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
238 B
Lua
10 lines
238 B
Lua
-- https://github.com/catppuccin/catppuccin
|
|
local status_ok, catppucin = pcall(require, "catppuccin")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
vim.g.catppuccin_flavour = "mocha" -- latte, frappe, macchiato, mocha
|
|
|
|
require("catppuccin").setup()
|