Sun, 19 Feb 2023 03:46:30 -0600
More nvim config
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }) end vim.opt.rtp:prepend(vim.env.LAZY or lazypath) require("lazy").setup({ spec = { { "nanotech/jellybeans.vim", priority = 1000, config = function() vim.cmd.colorscheme("jellybeans") end }, { import = "plugins" } }, change_detection = { enabled = false }, performance = { rtp = { disabled_plugins = { "gzip", "tarPlugin", "tohtml", "zipPlugin", "tutor", }, }, }, })