switch theme to catppuccin

This commit is contained in:
jannawro 2023-11-13 16:42:04 +01:00
parent 9318a9543f
commit 51c4a97143
1 changed files with 14 additions and 5 deletions

View File

@ -150,15 +150,24 @@ require('lazy').setup({
}, },
}, },
-- {
-- -- Theme inspired by Atom
-- 'navarasu/onedark.nvim',
-- priority = 1000,
-- config = function()
-- vim.cmd.colorscheme 'onedark'
-- end,
-- },
{ {
-- Theme inspired by Atom -- https://github.com/catppuccin/nvim
'navarasu/onedark.nvim', 'catppuccin/nvim',
name = "catppuccin",
priority = 1000, priority = 1000,
config = function() config = function()
vim.cmd.colorscheme 'onedark' vim.cmd.colorscheme 'catppuccin'
end, end,
}, },
{ {
-- Set lualine as statusline -- Set lualine as statusline
'nvim-lualine/lualine.nvim', 'nvim-lualine/lualine.nvim',
@ -166,7 +175,7 @@ require('lazy').setup({
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'onedark', theme = 'catppuccin',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },