From 0063e439a3230f3821f46496395a22134e63cbc1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 29 Dec 2022 22:37:17 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 59b7ebf..0fd46b4 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -73,11 +73,12 @@ You can add the following Lua code to your `init.lua` to bootstrap "clone", "--filter=blob:none", "--single-branch", + "--branch=stable", -- remove this if you want to bootstrap to HEAD "https://github.com/folke/lazy.nvim.git", lazypath, }) end - vim.opt.runtimepath:prepend(lazypath) + vim.opt.rtp:prepend(lazypath) <