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*