Updated Home (markdown)

rebuilt 2021-07-06 12:47:13 +02:00
parent 5fb42a5a39
commit 1eda11ee86

56
Home.md

@ -3,10 +3,7 @@
- [Whats included?](https://github.com/ChristianChiarulli/LunarVim/wiki/What's-Included%3F) - [Whats included?](https://github.com/ChristianChiarulli/LunarVim/wiki/What's-Included%3F)
- [Project Goals](https://github.com/ChristianChiarulli/LunarVim/wiki/Project-Goals) - [Project Goals](https://github.com/ChristianChiarulli/LunarVim/wiki/Project-Goals)
- [Installation](https://github.com/ChristianChiarulli/LunarVim/wiki/Installation) - [Installation](https://github.com/ChristianChiarulli/LunarVim/wiki/Installation)
- [Getting started](#getting-started) - [Getting started](https://github.com/ChristianChiarulli/LunarVim/wiki/Getting-Started)
* [Home screen](#home-screen)
* [Leader and Whichkey](#leader-and-whichkey)
* [Important Configuration files](#important-configuration-files)
- [Install your own plugins](#install-your-own-plugins) - [Install your own plugins](#install-your-own-plugins)
* [Built-in plugins](#built-in-plugins) * [Built-in plugins](#built-in-plugins)
* [User-defined plugins](#user-defined-plugins) * [User-defined plugins](#user-defined-plugins)
@ -37,57 +34,6 @@
# Install your own plugins
## Built-in plugins
LunarVim comes bundled with a small set of default plugins. To enable a plugin, add an entry for it in your personal configuration file.
```
-- ~/.config/nvim/lv-config.lua
O.plugin.dashboard.active = true
```
The following is a list of available plugins. Some plugins may require you to set your own keybindings. Check the github project page for each plugin to learn exactly what configuration options are available. The built-in plugins are defined in ~/.config/nvim/lua/default-config.lua
```
dashboard = { active = false },
colorizer = { active = false },
zen = { active = false },
ts_playground = { active = false },
ts_context_commentstring = { active = false },
telescope_fzy = { active = false },
telescope_project = { active = false },
indent_line = { active = false },
symbol_outline = { active = false },
debug = { active = false },
dap_install = { active = false },
lazygit = { active = false },
lush = { active = false },
diffview = { active = false },
```
## User-defined plugins
If you'd like to install plugins that aren't bundled with LunarVim, define them in your personal configuration file. Any plugins you want to use should be defined in lv-config.lua using the custom_plugins table.
```
# lv-config.lua
# Other, user-defined plugins will be another entry in this table
O.custom_plugins = {{"folke/tokyonight.nvim"}}
```
## Removing plugins
To disable a plugin set it's active state to 'false'.
```
-- ~/.config/nvim/lv-config.lua
O.plugin.hop.active = false
-- Or remove the entry from custom_plugins
O.custom_plugins = {}
```
Then run :PackerClean to delete the plugin files.
## Finding plugins ## Finding plugins
If you want to find other plugins that take advantage of neovims latest If you want to find other plugins that take advantage of neovims latest