From 9c675245ed91e646a13d85f6f1e8f5d5da996c6a Mon Sep 17 00:00:00 2001 From: Tovi Jaeschke-Rogers Date: Thu, 6 Jun 2024 15:51:34 +0930 Subject: [PATCH] feat: remove colorscheme from lazy.lua config --- .config/nvim/lua/tovi/lazy.lua | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.config/nvim/lua/tovi/lazy.lua b/.config/nvim/lua/tovi/lazy.lua index b655089..9280b3a 100644 --- a/.config/nvim/lua/tovi/lazy.lua +++ b/.config/nvim/lua/tovi/lazy.lua @@ -11,18 +11,17 @@ if not vim.loop.fs_stat(lazypath) then end vim.opt.rtp:prepend(lazypath) -require("lazy").setup({ - { import = "tovi.plugins" }, - { import = "tovi.plugins.lsp" }, -}, { - install = { - colorscheme = { "nightfly" }, - }, - checker = { - enabled = true, - notify = false, - }, - change_detection = { - notify = false, - }, +require("lazy").setup( + { + { import = "tovi.plugins" }, + { import = "tovi.plugins.lsp" }, + }, + { + checker = { + enabled = true, + notify = false, + }, + change_detection = { + notify = false, + }, })