From 1cd899cd59b51aa73f4e320175b468130f5855bd Mon Sep 17 00:00:00 2001 From: Rofelson Date: Sat, 20 May 2023 23:10:52 +0000 Subject: [PATCH] Replaced onedark colorscheme with tokyonight --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index c77ff26c..440bb36d 100644 --- a/init.lua +++ b/init.lua @@ -121,10 +121,10 @@ require('lazy').setup({ { -- Theme inspired by Atom - 'navarasu/onedark.nvim', + 'folke/tokyonight.nvim', priority = 1000, config = function() - vim.cmd.colorscheme 'onedark' + vim.cmd.colorscheme 'tokyonight-night' end, }, @@ -135,7 +135,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'tokyonight', component_separators = '|', section_separators = '', },