From 82f2f412cdf5aba04f11e0b86f5c70fb22c8e87d Mon Sep 17 00:00:00 2001 From: rebuilt Date: Tue, 6 Jul 2021 12:53:50 +0200 Subject: [PATCH] Created Using Packer (markdown) --- Using-Packer.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Using-Packer.md diff --git a/Using-Packer.md b/Using-Packer.md new file mode 100644 index 0000000..02dc6a6 --- /dev/null +++ b/Using-Packer.md @@ -0,0 +1,35 @@ +[Packer](https://github.com/wbthomason/packer.nvim) manages your +installed plugins. Any time you make changes to your list of plugins in +\~/.config/nvim/lua/plugins.lua you must first run the command +:PackerCompile then :PackerInstall. \#\# Packer commands + +``` bash +-- You must run this or `PackerSync` whenever you make changes to your plugin configuration +:PackerCompile + +-- Only install missing plugins +:PackerInstall + +-- Update and install plugins +:PackerUpdate + +-- Remove any disabled or unused plugins +:PackerClean + +-- Performs `PackerClean` and then `PackerUpdate` +:PackerSync + +-- View the status of your plugins +:PackerStatus +``` + +## Packer reports missing plugins + +If you get an error message about missing plugins and the above commands +do not work, remove the plugin directory and reinstall from scratch. + +``` bash +rm -rf ~/.local/share/nvim/site +:PackerCompile +:PackerInstall +```