Neovim/lua/plugins/catppuccin.lua

27 lines
555 B
Lua
Raw Permalink Normal View History

2024-11-24 15:53:48 +00:00
--
-- Soothing pastel theme for Neovim.
--
-- Source: https://github.com/catppuccin/nvim
-- ..............................................
--
-- Author: Sven Vogel
-- Created: 24.11.2024
-- Edited: 24.11.2024
--
-- ==============================================
return {
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function(opts)
require('catppuccin').setup(opts)
-- setup must be called before loading
vim.cmd.colorscheme "catppuccin"
end
}
}