Thu, 11 Apr 2024 13:19:24 -0400
add .luarc.jsonc
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 | { |
1073
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
17 | "rebelot/kanagawa.nvim", |
1019 | 18 | priority = 1000, |
1049
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
19 | opts = { |
1073
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
20 | keywordStyle = { italic = false }, |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
21 | statementStyle = { bold = false }, |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
22 | colors = { |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
23 | theme = { |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
24 | all = { |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
25 | ui = { |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
26 | bg = "none", |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
27 | bg_gutter = "none", |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
28 | }, |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
29 | }, |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
30 | }, |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
31 | }, |
1049
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
32 | }, |
1073
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
33 | config = function(_, opts) |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
34 | require("kanagawa").setup(opts) |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
35 | vim.cmd("colorscheme kanagawa") |
911aa9d81e71
Switch to kanagawa until themer's jellybeans is fixed
Meredith Howard <mhoward@roomag.org>
parents:
1064
diff
changeset
|
36 | end, |
1049
3f01468ffc32
Switch to themer jellybeans
Meredith Howard <mhoward@roomag.org>
parents:
1019
diff
changeset
|
37 | }, |
1064 | 38 | { import = "plugins" }, |
1019 | 39 | }, |
40 | change_detection = { enabled = false }, | |
1131
f3044a1658fc
nvim: switch to preferring last symver tag / add exceptions
Meredith Howard <mhoward@roomag.org>
parents:
1101
diff
changeset
|
41 | defaults = { |
f3044a1658fc
nvim: switch to preferring last symver tag / add exceptions
Meredith Howard <mhoward@roomag.org>
parents:
1101
diff
changeset
|
42 | version = "*", |
f3044a1658fc
nvim: switch to preferring last symver tag / add exceptions
Meredith Howard <mhoward@roomag.org>
parents:
1101
diff
changeset
|
43 | }, |
1019 | 44 | performance = { |
45 | rtp = { | |
46 | disabled_plugins = { | |
47 | "gzip", | |
48 | "tarPlugin", | |
49 | "tohtml", | |
50 | "zipPlugin", | |
51 | "tutor", | |
52 | }, | |
53 | }, | |
54 | }, | |
55 | }) |