Files
starship/docs/de-DE/installing/README.md
T

85 lines
2.0 KiB
Markdown
Raw Normal View History

2021-01-07 18:08:18 -05:00
# 🚀 Advanced Installation
2021-03-15 13:18:42 -04:00
Um starship zu installieren, musst du zwei Dinge tun:
2021-01-07 18:08:18 -05:00
2021-07-10 17:15:23 -04:00
1. Holen Sie sich das **starship** Binary auf Ihren Computer
2021-01-07 18:08:18 -05:00
1. Tell your shell to use the starship binary as its prompt by modifying its init scripts
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!
2021-03-15 13:18:42 -04:00
## [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
```
2021-02-21 14:13:18 -05:00
## [termux](https://termux.com)
2021-03-15 13:18:42 -04:00
2021-02-21 14:13:18 -05:00
### Voraussetzungen
2021-03-15 13:18:42 -04:00
2021-02-21 14:13:18 -05:00
```sh
pkg install getconf
```
### Installation
2021-03-15 13:18:42 -04:00
2021-02-21 14:13:18 -05:00
```sh
2021-04-22 17:12:09 -04:00
sh -c "$(curl -fsSL https://starship.rs/install.sh)" -- --bin-dir /data/data/com.termux/files/usr/bin
2021-02-21 14:13:18 -05:00
```
2021-01-07 18:08:18 -05:00
## [Nix](https://nixos.wiki/wiki/Nix)
### Getting the Binary
#### Imperatively
```sh
nix-env -iA nixos.starship
```
2021-04-05 10:55:57 -04:00
#### Declarative, single user, via [home-manager](https://github.com/nix-community/home-manager)
2021-01-07 18:08:18 -05:00
2021-03-15 13:18:42 -04:00
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
2021-01-07 18:08:18 -05:00
```sh
home-manager switch
```
#### Declarative, system-wide, with NixOS
2021-03-15 13:18:42 -04:00
Add `pkgs.starship` to `environment.systemPackages` in your `configuration.nix`, then run
2021-01-07 18:08:18 -05:00
```sh
sudo nixos-rebuild switch
```