mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
10 lines
223 B
Lua
10 lines
223 B
Lua
return {
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
opts = require('config.plugins.catppuccin'),
|
|
config = function (_, opts)
|
|
require("catppuccin").setup(opts)
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end
|
|
}
|