Sun, 19 Feb 2023 03:46:30 -0600
More nvim config
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 = { | |
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 | }) |