From 618cbb28983e070d6d3aebd3a253f091a9ef8b46 Mon Sep 17 00:00:00 2001 From: connorgmeean Date: Wed, 21 Sep 2022 19:27:11 +1000 Subject: [PATCH] docs: Improved docs on adding / installing plugins --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef85be003..a376b943a 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ vim.opt.colorcolumn = 120 -- Regular vim options can also be set ##### Adding plugins -Additional packages can be imported with the `doom.use_package()` function. +Additional packages can be installed with the `doom.use_package()` function. This is a wrapper around `packer.use()` and provides the same API. [DOCS](https://github.com/wbthomason/packer.nvim#quickstart) ```lua @@ -164,6 +164,8 @@ doom.use_package({ }) ``` +> Note: you will need to restart nvim and run `:PackerSync` after add/removing packages to import them correctly. + ##### Adding Keybinds Additional keybinds can be defined with the `doom.use_keybind()` function.