Merge pull request #485 from n-a11s/patch-1
Differences in CMD and Powershell env variables.
This commit is contained in:
		
						commit
						1c59dc28c8
					
				
							
								
								
									
										11
									
								
								README.md
								
								
								
								
							
							
						
						
									
										11
									
								
								README.md
								
								
								
								
							| 
						 | 
					@ -34,7 +34,8 @@ Neovim's configurations are located under the following paths, depending on your
 | 
				
			||||||
| :- | :--- |
 | 
					| :- | :--- |
 | 
				
			||||||
| Linux | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |
 | 
					| Linux | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |
 | 
				
			||||||
| MacOS | `$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:
 | 
					Clone kickstart.nvim:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -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\ 
 | 
					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
 | 
					### Post Installation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Start Neovim
 | 
					Start Neovim
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue