neovim

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

commit 69d8ae997e744efd687af2f27af7fe434f3c778e
parent dedeb538005b52b89474aebeb799d3fd72d1f5ad
Author: bdmfegys@duck.com <bdmfegys@duck.com>
Date:   Wed,  1 May 2024 17:22:19 -0400

index.lua & lazy-nvim.lua: move lazy.nvim initialization to lazy-nvim.lua

Diffstat:
Mlua/index.lua | 13+------------
1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/lua/index.lua b/lua/index.lua @@ -1,15 +1,4 @@ -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 -vim.opt.rtp:prepend(lazypath) +require("lazy-nvim") require("plugins") require("options") require("autostart")