Change colorscheme plugin to sonokai

This commit is contained in:
Markus Ullmann 2023-10-27 14:43:48 +02:00 committed by Markus Ullmann
parent b9b81b8aa7
commit 80b5401bff
1 changed files with 10 additions and 6 deletions

View File

@ -202,15 +202,18 @@ require('lazy').setup({
{ {
-- Theme inspired by Atom -- Theme inspired by Atom
'navarasu/onedark.nvim', 'sainnhe/sonokai',
priority = 1000, priority = 1000,
lazy = false, lazy = false,
config = function() config = function()
require('onedark').setup { -- require('onedark').setup {
-- Set a style preset. 'dark' is default. -- -- Set a style preset. 'dark' is default.
style = 'dark', -- dark, darker, cool, deep, warm, warmer, light -- style = 'dark', -- dark, darker, cool, deep, warm, warmer, light
} -- }
require('onedark').load() -- require('onedark').load()
vim.g.sonokai_style = 'maia'
vim.g.sonokai_better_performance = 1
vim.cmd([[colorscheme sonokai]])
end, end,
}, },
@ -222,6 +225,7 @@ require('lazy').setup({
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'auto', theme = 'auto',
-- theme = 'sonokai',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },