diff options
author | Chris Patti <feoh@feoh.org> | 2023-11-06 15:56:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 15:56:59 -0500 |
commit | 1c59dc28c87130bd484fece0838151d4ea6017b9 (patch) | |
tree | 8cf20df07b923049b4ceb9886f65d95a56760e67 /README.md | |
parent | 29c77cd7e5e4f22b88c28e58208dbd348d75c6ad (diff) | |
parent | 4d2cf48fb6b620a5b4ae30f6b2a0b3b521cdbce8 (diff) |
Merge pull request #485 from n-a11s/patch-1
Differences in CMD and Powershell env variables.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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 |