neovim

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

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

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

Diffstat:
Alua/lazy-nvim.lua | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/lua/lazy-nvim.lua b/lua/lazy-nvim.lua @@ -0,0 +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 +vim.opt.rtp:prepend(lazypath) +