]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
Fix installation instructions
authorAaron Patterson <tenderlove@ruby-lang.org>
Fri, 9 Sep 2022 19:54:54 +0000 (12:54 -0700)
committerAaron Patterson <tenderlove@ruby-lang.org>
Fri, 9 Sep 2022 19:54:54 +0000 (12:54 -0700)
The installation instructions put the lsp plugin in the wrong directory
for the `packadd` command.  This updates the readme to fix the
installation instructions.

Fixes #62

README.md

index 380bfddeed123982110731dfc0ee0bae8dc5a2a1..5e18a544ec434c36f914a6de51072ab9e6c8b02b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -7,8 +7,8 @@ Language Server Protocol (LSP) plugin for Vim9. You need Vim version 8.2.2342 or
 You can install this plugin directly from github using the following steps:
 
 ```
-    $ mkdir -p $HOME/.vim/pack/downloads/opt/lsp
-    $ cd $HOME/.vim/pack/downloads/opt/lsp
+    $ mkdir -p $HOME/.vim/pack/downloads/opt
+    $ cd $HOME/.vim/pack/downloads/opt
     $ git clone https://github.com/yegappan/lsp
 ```