From a5d33dd78bccf8fac9a115d18047d209cca59b59 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Mon, 16 Dec 2024 10:37:24 +0100 Subject: [PATCH] fix colorsheme --- dotfiles/.config/nvim/lua/config/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.config/nvim/lua/config/lazy.lua b/dotfiles/.config/nvim/lua/config/lazy.lua index e410339..c75848e 100644 --- a/dotfiles/.config/nvim/lua/config/lazy.lua +++ b/dotfiles/.config/nvim/lua/config/lazy.lua @@ -23,7 +23,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" } }, -- automatically check for plugin updates checker = { enabled = true }, })