diff --git a/lua/plugins/catppuccin.lua b/lua/plugins/catppuccin.lua new file mode 100644 index 0000000..b8cb87a --- /dev/null +++ b/lua/plugins/catppuccin.lua @@ -0,0 +1,26 @@ +-- +-- 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 + } +}