summaryrefslogtreecommitdiffstats
path: root/docs/de-DE/installing/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/de-DE/installing/README.md')
-rw-r--r--docs/de-DE/installing/README.md54
1 files changed, 41 insertions, 13 deletions
diff --git a/docs/de-DE/installing/README.md b/docs/de-DE/installing/README.md
index b98ddce39..aa64a272a 100644
--- a/docs/de-DE/installing/README.md
+++ b/docs/de-DE/installing/README.md
@@ -1,6 +1,6 @@
# 🚀 Advanced Installation
-To install starship, you need to do two things:
+Um starship zu installieren, musst du zwei Dinge tun:
1. Get the **starship** binary onto your computer
1. Tell your shell to use the starship binary as its prompt by modifying its init scripts
@@ -8,13 +8,29 @@ To install starship, you need to do two things:
For most users, the instructions on [the main page](/guide/#🚀-installation) will work great. However, for some more specialized platforms, different instructions are needed.
There are so many platforms out there that they didn't fit into the main README.md file, so here are some installation instructions for other platforms from the community. Is yours not here? Please do add it here if you figure it out!
+
+## [Chocolatey](https://chocolatey.org)
+
+### Voraussetzungen
+
+Head over to the [Chocolatey installation page](https://chocolatey.org/install) and follow the instructions to install Chocolatey.
+
+### Installation
+
+```powershell
+choco install starship
+```
+
## [termux](https://termux.com)
+
### Voraussetzungen
+
```sh
pkg install getconf
```
### Installation
+
```sh
curl -fsSL https://starship.rs/install.sh | bash -s -- -b /data/data/com.termux/files/usr/bin
```
@@ -31,7 +47,29 @@ nix-env -iA nixos.starship
#### Declarative, single user, via [home-manager](home-manager)
-Add `pkgs.starship` to your `home.packages` in your `home.nix` file, then run
+Enable the `programs.starship` module in your `home.nix` file, and add your settings
+
+```nix
+{
+ programs.starship = {
+ enable = true;
+ enableZshIntegration = true;
+ # Configuration written to ~/.config/starship.toml
+ settings = {
+ # add_newline = false;
+
+ # character = {
+ # success_symbol = "[➜](bold green)";
+ # error_symbol = "[➜](bold red)";
+ # };
+
+ # package.disabled = true;
+ };
+ };
+}
+```
+
+then run
```sh
home-manager switch
@@ -39,18 +77,8 @@ home-manager switch
#### Declarative, system-wide, with NixOS
-Add `pkgs.starship` to `environment.packages` in your `configuration.nix`, then run
+Add `pkgs.starship` to `environment.systemPackages` in your `configuration.nix`, then run
```sh
sudo nixos-rebuild switch
```
-
-### Modifying Init Scripts
-
-#### With Nix and home-manager, using zsh:
-
-Add the following to `programs.zsh.initExtra` in your `home.nix` file, then run
-
-```sh
-home-manager switch
-```