From 25d21a23d0e2752135eb0a04d0ae78269ea899b1 Mon Sep 17 00:00:00 2001 From: Marc Talcott Date: Tue, 11 Jun 2024 08:37:55 -0400 Subject: [PATCH] set colorscheme to frappe --- lua/plugins/catppuccin.lua | 9 +++++++++ lua/plugins/plugins.lua | 11 +---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 lua/plugins/catppuccin.lua diff --git a/lua/plugins/catppuccin.lua b/lua/plugins/catppuccin.lua new file mode 100644 index 00000000..38eb37e3 --- /dev/null +++ b/lua/plugins/catppuccin.lua @@ -0,0 +1,9 @@ +return { + 'catppuccin/nvim', + name = 'catppuccin', + priority = 1000, + flavour = 'frappe', + init = function() + vim.cmd.colorscheme 'catppuccin-frappe' + end, +} diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua index 842ee0d8..f24aa17c 100644 --- a/lua/plugins/plugins.lua +++ b/lua/plugins/plugins.lua @@ -558,15 +558,6 @@ return { } end, }, - { - 'catppuccin/nvim', - name = 'catppuccin', - priority = 1000, - flavour = 'mocha', - init = function() - vim.cmd.colorscheme 'catppuccin' - end, - }, --{ -- You can easily change to a different colorscheme. -- Change the name of the colorscheme plugin below, and then @@ -577,7 +568,7 @@ return { -- priority = 1000, -- Make sure to load this before all the other start plugins. -- init = function() -- Load the colorscheme here. - -- Like many other themes, this one has different styles, and you could load + -- Like many other themes, this one has different styles, and you could loadplugins -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- vim.cmd.colorscheme 'tokyonight-night'