From d4018566eaf9c13ad389a3c10d696445dc0a6299 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Jan 2023 11:00:06 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/LazyVim.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/doc/LazyVim.txt b/doc/LazyVim.txt index e10f9cf8..ac29c5f9 100644 --- a/doc/LazyVim.txt +++ b/doc/LazyVim.txt @@ -31,6 +31,24 @@ GETTING STARTED *LazyVim-getting-started* You can find a starter template for **LazyVim** here +**TLDR:** + +>lua + require("lazy").setup({ + spec = { + -- import LazyVim plugins + { "LazyVim/LazyVim", import = "lazyvim.plugins" }, + -- import/override with your plugins + { import = "plugins" }, + }, + defaults = { + lazy = true, -- every plugin is lazy-loaded by default + version = "", -- try installing the latest stable version for plugins that support semver + }, + }) +< + + TODO *LazyVim-todo*