summaryrefslogtreecommitdiffstats
path: root/nvim
diff options
context:
space:
mode:
authorn-a11s <nikolaus.athanassiadis@gmail.com>2023-11-03 13:47:30 +0100
committerGitHub <noreply@github.com>2023-11-03 13:47:30 +0100
commitab6354e6fe6dda318362cc5133dc5dc342969f0f (patch)
tree02b5b778806f46275919124457e814c0f64aab41 /nvim
parentf92bdb2e270beee9becb9c4f947b355c2922d592 (diff)
downloaddots-ab6354e6fe6dda318362cc5133dc5dc342969f0f.tar.gz
Update README.md
Added information on where to install if you use Powershell in windows. Since CMD and Powershell work differently. `%userprofile%` only works for the CMD application. `$env:USERPROFILE` works in Powershell.
Diffstat (limited to 'nvim')
-rw-r--r--nvim/README.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/nvim/README.md b/nvim/README.md
index 9652d70..e2d9ea8 100644
--- a/nvim/README.md
+++ b/nvim/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` |
| 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:
@@ -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