mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-08-31 23:19:58 +02:00
docs: added TLDR
This commit is contained in:
parent
9d516c9569
commit
f613a08255
1 changed files with 17 additions and 0 deletions
17
README.md
17
README.md
|
@ -16,6 +16,23 @@ or disable plugins.
|
|||
|
||||
You can find a starter template for **LazyVim** [here](https://github.com/LazyVim/starter)
|
||||
|
||||
**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
|
||||
|
||||
- [ ] documentation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue