Mon, 06 Mar 2023 23:33:14 -0500
tweak lazy loading
1014 | 1 | local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" |
2 | if not vim.loop.fs_stat(lazypath) then | |
1064 | 3 | vim.fn.system({ |
4 | "git", | |
5 | "clone", | |
6 | "--filter=blob:none", | |
7 | "https://github.com/folke/lazy.nvim.git", | |
8 | "--branch=stable", | |
9 | lazypath, | |
10 | }) | |
1014 | 11 | end |
12 | vim.opt.rtp:prepend(vim.env.LAZY or lazypath) | |
13 | ||
1019 | 14 | require("lazy").setup({ |
15 | spec = { | |
1049
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
16 | { |
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
17 | "themercorp/themer.lua", |
1019 | 18 | priority = 1000, |
1049
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
19 | opts = { |
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
20 | colorscheme = "jellybeans", |
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
21 | }, |
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
22 | }, |
1064 | 23 | { import = "plugins" }, |
1019 | 24 | }, |
25 | change_detection = { enabled = false }, | |
26 | performance = { | |
27 | rtp = { | |
28 | disabled_plugins = { | |
29 | "gzip", | |
30 | "tarPlugin", | |
31 | "tohtml", | |
32 | "zipPlugin", | |
33 | "tutor", | |
34 | }, | |
35 | }, | |
36 | }, | |
37 | }) |