From b202da6a5bf14c36bf4256e58c12611defee3c43 Mon Sep 17 00:00:00 2001 From: Alex Bolotskov Date: Mon, 1 Jul 2024 09:05:56 +0500 Subject: [PATCH] catppuccin theme --- lua/custom/plugins/init.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 0cc28254..488c2a43 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -1,3 +1,4 @@ +-- vim: tabstop=4 shiftwidth=4 noexpandtab -- You can add your own plugins here or in other files in this directory! -- I promise not to create any merge conflicts in this directory :) -- @@ -12,6 +13,12 @@ return { 'tpope/vim-fugitive', lazy = false, }, + { + 'catppuccin/nvim', + name = 'catppuccin', + lazy = false, + config = function() + vim.cmd.colorscheme 'catppuccin-mocha' + end, + }, } - --- vim: tabstop=4 shiftwidth=4 noexpandtab