.config/nvim/lua/config/lazy.lua

Sun, 12 Feb 2023 14:42:31 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 12 Feb 2023 14:42:31 -0600
changeset 1014
b57969db48db
permissions
-rw-r--r--

start nvim config

require("lazy-bootstrap").setup({
  spec = {
    { "nanotech/jellybeans.vim",
      priority = 1000,
      config = function() vim.cmd.colorscheme("jellybeans") end },
    { import = "plugins" }
  },
  change_detection = { enabled = false },
  performance = {
    rtp = {
      disabled_plugins = {
        "gzip",
        "tarPlugin",
        "tohtml",
        "zipPlugin",
        "tutor",
      },
    },
  },
})

mercurial