mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-12-25 04:41:46 +00:00
change colorscheme to catppuccin
This commit is contained in:
parent
bc49ee4649
commit
2067f93aec
@ -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'
|
@ -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 = ' ',
|
||||||
},
|
},
|
||||||
|
@ -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',
|
||||||
|
Loading…
Reference in New Issue
Block a user