diff --git a/doc/LazyVim.txt b/doc/LazyVim.txt
index cde80191..d0a880a1 100644
--- a/doc/LazyVim.txt
+++ b/doc/LazyVim.txt
@@ -1,20 +1,54 @@
-*LazyVim.txt* For Neovim >= 0.8.0 Last change: 2023 January 18
+*LazyVim.txt* For Neovim >= 0.8.0 Last change: 2023 January 19
==============================================================================
Table of Contents *LazyVim-table-of-contents*
-1. LazyVim |LazyVim-lazyvim|
- Features |LazyVim-features|
- Requirements |LazyVim-requirements|
- Getting Started |LazyVim-getting-started|
- File Structure |LazyVim-file-structure|
- Configuration |LazyVim-configuration|
- - Configuring **Plugins** |LazyVim-configuring-**plugins**|
- - Keymaps |LazyVim-keymaps|
- - Plugins |LazyVim-plugins|
-==============================================================================
-1. LazyVim *LazyVim-lazyvim*
+
+
+
image
+image
@@ -75,6 +114,10 @@ Install the LazyVim Starter >sh git clone https://github.com/LazyVim/starter ~/.config/nvim < +- Remove the `.git` folder, so you can add it to your own repo later + >sh + rm -rf ~/.config/nvim/.git + < - Start Neovim! >sh nvim @@ -109,638 +152,7 @@ be automatically loaded by lazy.nvimlua/plugins/example.lua
-
->lua
- -- every spec file under config.plugins will be loaded automatically by lazy.nvim
- --
- -- In your plugin files, you can:
- -- add extra plugins
- -- disable/enabled LazyVim plugins
- -- override the configuration of LazyVim plugins
- return {
- -- add gruvbox
- { "ellisonleao/gruvbox.nvim" },
-
- -- Configure LazyVim to load gruvbox
- {
- "LazyVim/LazyVim",
- opts = {
- colorscheme = "gruvbox",
- },
- },
-
- -- change trouble config
- {
- "folke/trouble.nvim",
- -- opts will be merged with the parent spec
- opts = { use_diagnostic_signs = true },
- },
-
- -- disable trouble
- { "folke/trouble.nvim", enabled = false },
-
- -- add symbols-outline
- {
- "simrat39/symbols-outline.nvim",
- cmd = "SymbolsOutline",
- keys = { { "image
-lang.json
-
-To use this, add it to your **lazy.nvim** imports:
-
->lua
- require("lazy").setup({
- spec = {
- { "folke/LazyVim", import = "lazyvim.plugins" },
- { import = "lazyvim.plugins.extras.lang.json" },
- { import = "plugins" },
- },
- })
-<
-
-
-
-- nvim-lspconfig lang.typescript
-
-To use this, add it to your **lazy.nvim** imports:
-
->lua
- require("lazy").setup({
- spec = {
- { "folke/LazyVim", import = "lazyvim.plugins" },
- { import = "lazyvim.plugins.extras.lang.typescript" },
- { import = "plugins" },
- },
- })
-<
-
-
-
-- nvim-lspconfig ui.mini-starter
-
-To use this, add it to your **lazy.nvim** imports:
-
->lua
- require("lazy").setup({
- spec = {
- { "folke/LazyVim", import = "lazyvim.plugins" },
- { import = "lazyvim.plugins.extras.ui.mini-starter" },
- { import = "plugins" },
- },
- })
-<
-
-
-
-- mini.starter