mirror of https://github.com/folke/lazy.nvim.git
docs: remove disabled plugins from install instructions
This commit is contained in:
parent
2c33b870dc
commit
e14b333ddc
|
@ -21,6 +21,7 @@ It is recommended to run `:checkhealth lazy` after installation.
|
||||||
:::note
|
:::note
|
||||||
|
|
||||||
In what follows `~/.config/nvim` is your Neovim configuration directory.
|
In what follows `~/.config/nvim` is your Neovim configuration directory.
|
||||||
|
On Windows, this is usually `~\AppData\Local\nvim`.
|
||||||
To know the correct path for your system, run `:echo stdpath('config')`.
|
To know the correct path for your system, run `:echo stdpath('config')`.
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
@ -68,27 +69,12 @@ require("lazy").setup({
|
||||||
-- colorscheme that will be used when installing plugins.
|
-- colorscheme that will be used when installing plugins.
|
||||||
install = { colorscheme = { "habamax" } },
|
install = { colorscheme = { "habamax" } },
|
||||||
checker = { enabled = true }, -- automatically check for plugin updates
|
checker = { enabled = true }, -- automatically check for plugin updates
|
||||||
performance = {
|
|
||||||
rtp = {
|
|
||||||
-- uncomment the below to disable some rtp plugins
|
|
||||||
disabled_plugins = {
|
|
||||||
-- "gzip",
|
|
||||||
-- "matchit",
|
|
||||||
-- "matchparen",
|
|
||||||
-- "netrwPlugin",
|
|
||||||
-- "tarPlugin",
|
|
||||||
-- "tohtml",
|
|
||||||
-- "tutor",
|
|
||||||
-- "zipPlugin",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- install_multi:end -->
|
<!-- install_multi:end -->
|
||||||
|
|
||||||
You can then create your plugin specs in `lua/plugins`.
|
You can then create your plugin specs in `~/.config/nvim/lua/plugins/`.
|
||||||
Each file should return a table with the plugins you want to install.
|
Each file should return a table with the plugins you want to install.
|
||||||
|
|
||||||
For more info see [Structuring Your Plugins](/usage/structuring)
|
For more info see [Structuring Your Plugins](/usage/structuring)
|
||||||
|
@ -144,21 +130,6 @@ require("lazy").setup({
|
||||||
-- colorscheme that will be used when installing plugins.
|
-- colorscheme that will be used when installing plugins.
|
||||||
install = { colorscheme = { "habamax" } },
|
install = { colorscheme = { "habamax" } },
|
||||||
checker = { enabled = true }, -- automatically check for plugin updates
|
checker = { enabled = true }, -- automatically check for plugin updates
|
||||||
performance = {
|
|
||||||
rtp = {
|
|
||||||
-- uncomment the below to disable some rtp plugins
|
|
||||||
disabled_plugins = {
|
|
||||||
-- "gzip",
|
|
||||||
-- "matchit",
|
|
||||||
-- "matchparen",
|
|
||||||
-- "netrwPlugin",
|
|
||||||
-- "tarPlugin",
|
|
||||||
-- "tohtml",
|
|
||||||
-- "tutor",
|
|
||||||
-- "zipPlugin",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -28,19 +28,4 @@ require("lazy").setup({
|
||||||
-- colorscheme that will be used when installing plugins.
|
-- colorscheme that will be used when installing plugins.
|
||||||
install = { colorscheme = { "habamax" } },
|
install = { colorscheme = { "habamax" } },
|
||||||
checker = { enabled = true }, -- automatically check for plugin updates
|
checker = { enabled = true }, -- automatically check for plugin updates
|
||||||
performance = {
|
|
||||||
rtp = {
|
|
||||||
-- uncomment the below to disable some rtp plugins
|
|
||||||
disabled_plugins = {
|
|
||||||
-- "gzip",
|
|
||||||
-- "matchit",
|
|
||||||
-- "matchparen",
|
|
||||||
-- "netrwPlugin",
|
|
||||||
-- "tarPlugin",
|
|
||||||
-- "tohtml",
|
|
||||||
-- "tutor",
|
|
||||||
-- "zipPlugin",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue