diff options
author | Antyos <[email protected]> | 2022-02-03 01:57:59 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-03 11:27:59 +0330 |
commit | 8398a3f3ea13d6c5f90d60c291aa98ca4c248689 (patch) | |
tree | baa07e0cc89fe6229d87e1ac0076d5c3b38b02ab | |
parent | 1436d9090a31759e8ce1f7d184038230235a84da (diff) |
docs(readme): add powershell installer script for Windows (#2208)
* docs(readme): add powershell installer script for Windows
* docs(readme): simplify Windows installation
Co-authored-by: kylo252 <[email protected]>
* docs(readme): expand powershell `iex` and `iwr`
* docs(readme): use basic parsing for Powershell Invoke-WebRequest
Co-authored-by: kylo252 <[email protected]>
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -28,10 +28,16 @@ You can find all the documentation for LunarVim at [lunarvim.org](https://www.lu Make sure you have the release version of Neovim (0.6.1+). +Linux: ```bash bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh) ``` +Windows (Powershell): +```powershell +Invoke-WebRequest https://raw.githubusercontent.com/LunarVim/LunarVim/master/utils/installer/install.ps1 -UseBasicParsing | Invoke-Expression +``` + ## Install Language support - Enter `:LspInstall` followed by `<TAB>` to see your options for LSP |