Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(installation): add non-interactive info for linux #457

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/installation/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ import TabItem from '@theme/TabItem';
```bash
LV_BRANCH='master' bash <(curl -s https://raw.githubusercontent.com/LunarVim/LunarVim/master/utils/installer/install.sh)
```
To achieve a non-interactive installation, you can supply flags to the installer. For example, to always install dependencies, the `--install-dependencies` flag can be supplied:
```bash
LV_BRANCH='release-1.4/neovim-0.9' bash <(curl -s https://raw.githubusercontent.com/LunarVim/LunarVim/release-1.4/neovim-0.9/utils/installer/install.sh) -s -- --install-dependencies
```
A list of all installation flags can be found by supplying `-h` (or `--help`):
```bash
LV_BRANCH='release-1.4/neovim-0.9' bash <(curl -s https://raw.githubusercontent.com/LunarVim/LunarVim/release-1.4/neovim-0.9/utils/installer/install.sh) -s -- -h
```

</TabItem>
<TabItem value="windows" label="Windows">
Expand Down Expand Up @@ -62,6 +70,14 @@ All the new features with all the new bugs:
```bash
bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh)
```
To achieve a non-interactive installation, you can supply flags to the installer. For example, to always install dependencies, the `--install-dependencies` flag can be supplied:
```bash
bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh) -s -- --install-dependencies
```
A list of all installation flags can be found by supplying `-h` (or `--help`):
```bash
bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh) -s -- -h
```

</TabItem>
<TabItem value="windows" label="Windows">
Expand Down
Loading