Browse Source

feat: remove colorscheme from lazy.lua config

master
Tovi Jaeschke-Rogers 4 months ago
parent
commit
9c675245ed
1 changed files with 13 additions and 14 deletions
  1. +13
    -14
      .config/nvim/lua/tovi/lazy.lua

+ 13
- 14
.config/nvim/lua/tovi/lazy.lua View File

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

Loading…
Cancel
Save