浏览代码

Improve commands in README (#392)

* Suggest removing only Packer directory in README

* Adjust more commands

* Delete `~/.local/share/nvim/site`
Kid 4 年之前
父节点
当前提交
4ebdcac7fa
共有 1 个文件被更改,包括 9 次插入10 次删除
  1. 9 10
      README.md

+ 9 - 10
README.md

@@ -121,13 +121,12 @@ sudo pacman -S base-devel cmake unzip ninja tree-sitter
 Download and compile Neovim
 Download and compile Neovim
 
 
 ``` bash
 ``` bash
-cd ~
-sudo rm -r neovim
-git clone https://github.com/neovim/neovim
+cd $(mktemp -d)
+git clone https://github.com/neovim/neovim --depth 1
 cd neovim
 cd neovim
 sudo make CMAKE_BUILD_TYPE=Release install
 sudo make CMAKE_BUILD_TYPE=Release install
-cd ~
-sudo rm -r neovim
+cd ..
+rm -rf neovim
 ```
 ```
 
 
 or if you are on Arch you can get it from the AUR
 or if you are on Arch you can get it from the AUR
@@ -252,7 +251,7 @@ If you get an error message about missing plugins and the above commands
 do not work, remove the plugin directory and reinstall from scratch.
 do not work, remove the plugin directory and reinstall from scratch.
 
 
 ``` bash
 ``` bash
-sudo rm -R ~/.local/share/nvim
+rm -rf ~/.local/share/nvim/site
 :PackerCompile
 :PackerCompile
 :PackerInstall
 :PackerInstall
 ```
 ```
@@ -380,7 +379,7 @@ out plugin problems with the following. This reinstalls your plugins and
 language servers.
 language servers.
 
 
 ``` md
 ``` md
-sudo rm -R ~/.local/share/nvim
+rm -rf ~/.local/share/nvim/site
 :PackerCompile
 :PackerCompile
 :PackerInstall
 :PackerInstall
 :LspInstall python   <-- REPLACE WITH YOUR OWN LANGUAGE
 :LspInstall python   <-- REPLACE WITH YOUR OWN LANGUAGE
@@ -545,13 +544,13 @@ Changed your mind about LunarVim? To remove it entirely:
 
 
 ``` lua
 ``` lua
 # Delete the configuration files
 # Delete the configuration files
-sudo rm -R ~/.config/nvim
+rm -R ~/.config/nvim
 
 
 # Delete the plugins
 # Delete the plugins
-sudo rm -R ~/.local/share/nvim
+rm -Rf ~/.local/share/nvim
 
 
 # Delete the logs
 # Delete the logs
-sudo rm -R ~/.cache/nvim
+rm -R ~/.cache/nvim
 ```
 ```
 
 
 # TODO
 # TODO