feat(nvim): switch colorscheme to Catppuccin Mocha

This commit is contained in:
Stefan Imhoff
2024-03-01 13:17:09 +01:00
parent 0bd8041207
commit 7929840634
4 changed files with 25 additions and 19 deletions

View File

@@ -0,0 +1,6 @@
-- https://github.com/catppuccin/nvim
return {
"catppuccin/nvim",
lazy = true,
name = "catppuccin",
}

View File

@@ -1,4 +1,4 @@
-- https://github.com/folke/tokyonight.nvim
-- https://github.com/folke/tokyonight.nvim
return {
"folke/tokyonight.nvim",
lazy = true,

View File

@@ -1,9 +1,9 @@
-- Configure LazyVim to load Tokyo Night
-- Configure LazyVim to load colorscheme
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight",
colorscheme = "catppuccin",
},
},
}