22 lines
451 B
Markdown
22 lines
451 B
Markdown
|
|
[[Tenmado/Linux|Linux]]
|
||
|
|
#Public/Notta
|
||
|
|
## Installation
|
||
|
|
### Windows
|
||
|
|
[Official_Method](https://github.com/neovim/neovim/wiki/Installing-Neovim)
|
||
|
|
Windows:
|
||
|
|
- Powershell:
|
||
|
|
```powershell
|
||
|
|
winget install Neovim.Neovim
|
||
|
|
```
|
||
|
|
|
||
|
|
- WSL:
|
||
|
|
```bash
|
||
|
|
## Brew needs to be installed first > https://brew.sh
|
||
|
|
## or just run the following one liner
|
||
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||
|
|
|
||
|
|
## then
|
||
|
|
brew install neovim
|
||
|
|
```
|
||
|
|
|