Skip to content

Commit 1c59dc2

Browse files
authored
Merge pull request #485 from n-a11s/patch-1
Differences in CMD and Powershell env variables.
2 parents 29c77cd + 4d2cf48 commit 1c59dc2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Neovim's configurations are located under the following paths, depending on your
3434
| :- | :--- |
3535
| Linux | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |
3636
| MacOS | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |
37-
| Windows | `%userprofile%\AppData\Local\nvim\` |
37+
| Windows (cmd)| `%userprofile%\AppData\Local\nvim\` |
38+
| Windows (powershell)| `$env:USERPROFILE\AppData\Local\nvim\` |
3839

3940
Clone kickstart.nvim:
4041

@@ -45,10 +46,16 @@ git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HO
4546

4647

4748
```
48-
# on Windows
49+
# on Windows (cmd)
4950
git clone https://github.com/nvim-lua/kickstart.nvim.git %userprofile%\AppData\Local\nvim\
5051
```
5152

53+
```
54+
# on Windows (powershell)
55+
git clone https://github.com/nvim-lua/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\
56+
```
57+
58+
5259
### Post Installation
5360

5461
Start Neovim

0 commit comments

Comments
 (0)