Update colorscheme to catppuccin

This commit is contained in:
Denzil Villarico 2023-06-02 05:10:34 -07:00
parent 203378d266
commit 8d2741d92a
1 changed files with 4 additions and 2 deletions

View File

@ -132,11 +132,13 @@ require('lazy').setup({
{ {
-- Theme inspired by Atom -- Theme inspired by Atom
-- 'navarasu/onedark.nvim', -- 'navarasu/onedark.nvim',
'folke/tokyonight.nvim', -- 'folke/tokyonight.nvim',
'catppuccin/nvim', name = 'catppuccin',
priority = 1000, priority = 1000,
config = function() config = function()
-- vim.cmd.colorscheme 'onedark' -- vim.cmd.colorscheme 'onedark'
vim.cmd.colorscheme 'tokyonight' -- vim.cmd.colorscheme 'tokyonight'
vim.cmd.colorscheme 'catppuccin'
end, end,
}, },