From 80b5401bff262087e8546a7187b2235db278bdcf Mon Sep 17 00:00:00 2001 From: Markus Ullmann Date: Fri, 27 Oct 2023 14:43:48 +0200 Subject: [PATCH] Change colorscheme plugin to sonokai --- init.lua | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/init.lua b/init.lua index 7d2ed254..df6b07ac 100644 --- a/init.lua +++ b/init.lua @@ -202,15 +202,18 @@ require('lazy').setup({ { -- Theme inspired by Atom - 'navarasu/onedark.nvim', + 'sainnhe/sonokai', priority = 1000, lazy = false, config = function() - require('onedark').setup { - -- Set a style preset. 'dark' is default. - style = 'dark', -- dark, darker, cool, deep, warm, warmer, light - } - require('onedark').load() + -- require('onedark').setup { + -- -- Set a style preset. 'dark' is default. + -- style = 'dark', -- dark, darker, cool, deep, warm, warmer, light + -- } + -- require('onedark').load() + vim.g.sonokai_style = 'maia' + vim.g.sonokai_better_performance = 1 + vim.cmd([[colorscheme sonokai]]) end, }, @@ -222,6 +225,7 @@ require('lazy').setup({ options = { icons_enabled = false, theme = 'auto', + -- theme = 'sonokai', component_separators = '|', section_separators = '', },