.config/nvim/lua/lazy-bootstrap.lua

changeset 1019
7e42fd320166
parent 1014
b57969db48db
child 1049
3f01468ffc32
equal deleted inserted replaced
1018:cf7b17e7c1a3 1019:7e42fd320166
2 if not vim.loop.fs_stat(lazypath) then 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 }) 3 vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
4 end 4 end
5 vim.opt.rtp:prepend(vim.env.LAZY or lazypath) 5 vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
6 6
7 return require("lazy") 7 require("lazy").setup({
8 spec = {
9 { "nanotech/jellybeans.vim",
10 priority = 1000,
11 config = function() vim.cmd.colorscheme("jellybeans") end },
12 { import = "plugins" }
13 },
14 change_detection = { enabled = false },
15 performance = {
16 rtp = {
17 disabled_plugins = {
18 "gzip",
19 "tarPlugin",
20 "tohtml",
21 "zipPlugin",
22 "tutor",
23 },
24 },
25 },
26 })

mercurial