From 95c5e966bafff9e031c38d0fb97e211e5efdc692 Mon Sep 17 00:00:00 2001 From: Akulij Date: Sat, 7 Jun 2025 00:06:36 +0500 Subject: [PATCH] change lazy.nvim's theme during installation to tokyonight-night --- lua/config/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index c770f9b..069bd57 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -29,7 +29,7 @@ require("lazy").setup({ }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "habamax" } }, + install = { colorscheme = { "tokyonight-night" } }, -- automatically check for plugin updates checker = { enabled = false }, -- I will update only when I will want to })