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, + }, })