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