From 7d1bacbbbb5cc201609cdfdb368482a8ad08c6c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noah=20H=C3=A5kansson?= Date: Wed, 31 Jan 2024 08:57:33 +0100 Subject: [PATCH] Revert "update with changeds from kickstart.nvim" This reverts commit acdaf366cf8309fa293f26f1fbd8aba130401bd6. --- init.lua | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/init.lua b/init.lua index 3ce3afb4..baf48a54 100644 --- a/init.lua +++ b/init.lua @@ -201,13 +201,8 @@ require('lazy').setup({ -- Theme inspired by Atom 'navarasu/onedark.nvim', priority = 1000, - lazy = true, config = function() - require('onedark').setup({ - -- Set a style preset. 'dark' is default. - style = 'dark', -- dark, darker, cool, deep, warm, warmer, light - }) - require('onedark').load() + vim.cmd.colorscheme('onedark') end, }, @@ -221,7 +216,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = true, - theme = 'auto', + theme = 'onedark', component_separators = '|', section_separators = '', },