File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff 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
3940Clone 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)
4950git 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
5461Start Neovim
You can’t perform that action at this time.
0 commit comments