README.md: update install section formatting

The recent change moved the comment from a code block,
without removing the `#` which is interpreted as a level 1
heading, not what was intended. Changed to a bullet list.
This commit is contained in:
Damjan 9000 2023-11-30 08:58:35 +01:00
parent 14cf319dbd
commit 27c286612a
1 changed files with 3 additions and 4 deletions

View File

@ -39,18 +39,17 @@ Neovim's configurations are located under the following paths, depending on your
Clone kickstart.nvim: Clone kickstart.nvim:
# on Linux and Mac - on Linux and Mac
```sh ```sh
git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
``` ```
- on Windows (cmd)
# 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) - on Windows (powershell)
``` ```
git clone https://github.com/nvim-lua/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\ git clone https://github.com/nvim-lua/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\
``` ```