.config/nvim/lua/lazy-bootstrap.lua

Thu, 23 Feb 2023 13:58:37 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 23 Feb 2023 13:58:37 -0600
changeset 1049
3f01468ffc32
parent 1019
7e42fd320166
child 1064
fcfa295076a8
permissions
-rw-r--r--

Switch to themer jellybeans

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)

require("lazy").setup({
  spec = {
    {
      "themercorp/themer.lua",
      priority = 1000,
      opts = {
        colorscheme = "jellybeans",
      },
    },
    { import = "plugins" }
  },
  change_detection = { enabled = false },
  performance = {
    rtp = {
      disabled_plugins = {
        "gzip",
        "tarPlugin",
        "tohtml",
        "zipPlugin",
        "tutor",
      },
    },
  },
})

mercurial