diff options
author | Chris Patti <feoh@feoh.org> | 2023-10-26 08:35:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-26 08:35:53 -0400 |
commit | a3f3e08f347ba3fca747539affd7bf6bed0c28f6 (patch) | |
tree | 88a16848ec7ab7a894ceee2d7aee388ce5d76d3b /README.md | |
parent | 9b256d93688b3d295dab89f06faeff741af58a68 (diff) | |
parent | 68b1981f0298f5b92b68acc00f42eda5702c4044 (diff) |
Merge pull request #479 from dam9000/update-readme-lazy-sync
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -51,7 +51,15 @@ git clone https://github.com/nvim-lua/kickstart.nvim.git %userprofile%\AppData\L ### Post Installation -Run the following command and then **you are ready to go**! +Start Neovim + +```sh +nvim +``` + +The `Lazy` plugin manager will start automatically on the first run and install the configured plugins - as can be seen in the introduction video. After the installation is complete you can press `q` to close the `Lazy` UI and **you are ready to go**! Next time you run nvim `Lazy` will no longer show up. + +If you would prefer to hide this step and run the plugin sync from the command line, you can use: ```sh nvim --headless "+Lazy! sync" +qa |