neovim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 00d9acfe253347d32968593ce9a70da3e1ad7776
parent cb89269ce284a6808bdc261a209a446ae21faba9
Author: mrgrouse <bdmfegys@duck.com>
Date:   Thu,  5 Sep 2024 23:45:14 -0400

lazy-nvim.lua: comment unnecessary lazyvim install line for speed

Diffstat:
Mlua/lazy-nvim.lua | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/lua/lazy-nvim.lua b/lua/lazy-nvim.lua @@ -1,13 +1,13 @@ local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" -if not (vim.uv or vim.loop).fs_stat(lazypath) then - vim.fn.system({ - "git", - "clone", - "--filter=blob:none", - "https://github.com/folke/lazy.nvim.git", - "--branch=stable", -- latest stable release - lazypath, - }) -end +--if not (vim.uv or vim.loop).fs_stat(lazypath) then +-- vim.fn.system({ +-- "git", +-- "clone", +-- "--filter=blob:none", +-- "https://github.com/folke/lazy.nvim.git", +-- "--branch=stable", -- latest stable release +-- lazypath, +-- }) +--end vim.opt.rtp:prepend(lazypath) require("lazy").setup("plugins")