catppuccin theme

This commit is contained in:
Alex Bolotskov 2024-07-01 09:05:56 +05:00
parent 6a8f5a7446
commit b202da6a5b
1 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,4 @@
-- vim: tabstop=4 shiftwidth=4 noexpandtab
-- You can add your own plugins here or in other files in this directory! -- 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 :) -- I promise not to create any merge conflicts in this directory :)
-- --
@ -12,6 +13,12 @@ return {
'tpope/vim-fugitive', 'tpope/vim-fugitive',
lazy = false, lazy = false,
}, },
{
'catppuccin/nvim',
name = 'catppuccin',
lazy = false,
config = function()
vim.cmd.colorscheme 'catppuccin-mocha'
end,
},
} }
-- vim: tabstop=4 shiftwidth=4 noexpandtab