change colorscheme to catppuccin

This commit is contained in:
Baipyrus 2024-06-01 13:00:49 +02:00
parent bc49ee4649
commit 2067f93aec
3 changed files with 3 additions and 7 deletions

View File

@ -4,13 +4,11 @@ return {
-- change the command in the config to whatever the name of that colorscheme is. -- change the command in the config to whatever the name of that colorscheme is.
-- --
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'folke/tokyonight.nvim', 'catppuccin/nvim',
priority = 1000, -- Make sure to load this before all the other start plugins. priority = 1000, -- Make sure to load this before all the other start plugins.
init = function() init = function()
-- Load the colorscheme here. -- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load vim.cmd.colorscheme 'catppuccin-mocha'
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'

View File

@ -5,7 +5,7 @@ return {
opts = { opts = {
options = { options = {
icons_enabled = vim.g.have_nerd_font, icons_enabled = vim.g.have_nerd_font,
theme = 'auto', theme = 'catppuccin',
component_separators = '|', component_separators = '|',
section_separators = ' ', section_separators = ' ',
}, },

View File

@ -49,8 +49,6 @@ require('lazy').setup({
require 'kickstart/plugins/cmp', require 'kickstart/plugins/cmp',
require 'kickstart/plugins/tokyonight',
require 'kickstart/plugins/todo-comments', require 'kickstart/plugins/todo-comments',
require 'kickstart/plugins/mini', require 'kickstart/plugins/mini',