From 2618d6d6aeef8a4ac99767c6916bc6674d6dcd52 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Mon, 16 Sep 2024 08:14:46 +0200 Subject: [PATCH] tokiyo nights it is... --- lua/plugins/colorscheme.lua | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua index 6dbcc7b..cf774c8 100644 --- a/lua/plugins/colorscheme.lua +++ b/lua/plugins/colorscheme.lua @@ -1,10 +1,9 @@ return { - 'rebelot/kanagawa.nvim', - priority = 1000, -- make sure to load this before all the other start plugins + 'folke/tokyonight.nvim', + lazy = false, + priority = 1000, + opts = {}, init = function() - vim.cmd.colorscheme 'kanagawa' - - -- You can configure highlights by doing something like - -- vim.cmd.hi 'Comment gui=none' + vim.cmd.colorscheme 'tokyonight' end, }