Mon, 13 Feb 2023 02:20:08 -0600
Ongoing nvim config
1014 | 1 | require("lazy-bootstrap").setup({ |
2 | spec = { | |
3 | { "nanotech/jellybeans.vim", | |
4 | priority = 1000, | |
5 | config = function() vim.cmd.colorscheme("jellybeans") end }, | |
6 | { import = "plugins" } | |
7 | }, | |
8 | change_detection = { enabled = false }, | |
9 | performance = { | |
10 | rtp = { | |
11 | disabled_plugins = { | |
12 | "gzip", | |
13 | "tarPlugin", | |
14 | "tohtml", | |
15 | "zipPlugin", | |
16 | "tutor", | |
17 | }, | |
18 | }, | |
19 | }, | |
20 | }) | |
21 |