summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarshit Pant <97608579+pantharshit007@users.noreply.github.com>2024-08-26 08:57:46 +0530
committerGitHub <noreply@github.com>2024-08-25 23:27:46 -0400
commitb73ecd6e1f9bdd5d32c528012d5e793a7c330b9d (patch)
treec578969956a0c7b51ffeae790e44ec398584c17d
parent940a1750597227aa793187ca30bb70a9716807a5 (diff)
downloaddots-b73ecd6e1f9bdd5d32c528012d5e793a7c330b9d.tar.gz
Fix: updated the windows installation commands (#1101)
* Update README.md * Update README.md * Fix: updated the windows installation commands
-rw-r--r--nvim/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/README.md b/nvim/README.md
index 53ae459..e14cbe2 100644
--- a/nvim/README.md
+++ b/nvim/README.md
@@ -81,13 +81,13 @@ git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HO
If you're using `cmd.exe`:
```
-git clone https://github.com/nvim-lua/kickstart.nvim.git %localappdata%\nvim\
+git clone https://github.com/nvim-lua/kickstart.nvim.git "%localappdata%\nvim"
```
If you're using `powershell.exe`
```
-git clone https://github.com/nvim-lua/kickstart.nvim.git $env:LOCALAPPDATA\nvim\
+git clone https://github.com/nvim-lua/kickstart.nvim.git "${env:LOCALAPPDATA}\nvim"
```
</details>