Skip to content

Commit

Permalink
Merge pull request nvim-lua#485 from n-a11s/patch-1
Browse files Browse the repository at this point in the history
Differences in CMD and Powershell env variables.
  • Loading branch information
feoh committed Nov 6, 2023
2 parents 29c77cd + 4d2cf48 commit 1c59dc2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ Neovim's configurations are located under the following paths, depending on your
| :- | :--- |
| Linux | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |
| MacOS | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |
| Windows | `%userprofile%\AppData\Local\nvim\` |
| Windows (cmd)| `%userprofile%\AppData\Local\nvim\` |
| Windows (powershell)| `$env:USERPROFILE\AppData\Local\nvim\` |

Clone kickstart.nvim:

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


```
# on Windows
# on Windows (cmd)
git clone https://github.com/nvim-lua/kickstart.nvim.git %userprofile%\AppData\Local\nvim\
```

```
# on Windows (powershell)
git clone https://github.com/nvim-lua/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\
```


### Post Installation

Start Neovim
Expand Down

0 comments on commit 1c59dc2

Please sign in to comment.