.config/nvim/lua/config/lazy.lua

changeset 1019
7e42fd320166
parent 1018
cf7b17e7c1a3
child 1020
b1b644e9825d
equal deleted inserted replaced
1018:cf7b17e7c1a3 1019:7e42fd320166
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

mercurial