Oh My Zsh에서 starship으로 전환하는 방법 🚀

5272 단어 terminalmactooling
나는 녹을 배우기 시작한 이후로 Oh My Zsh에서 starship로 바꿨습니다 😁 🦀



0 단계 아직 없는 경우 homebrew를 설치합니다.




/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"


https://docs.brew.sh/Installation

1단계 Oh My Zsh 삭제



먼저 Oh My Zsh 를 제거합니다. Oh My Zsh를 제거하면 .zshrc가 보관됩니다.

uninstall_oh_my_zsh


2단계 우주선 설치




brew install starship


3단계 .zshrc에 설정 추가


.zshrc에 다음을 추가하십시오.

 eval "$(starship init zsh)"


4단계 글꼴 추가



문자 손상을 방지하기 위해 다음 글꼴을 사용할 수 있습니다.

https://github.com/ryanoasis/nerd-fonts#font-installation

5단계 starship에 대한 구성 파일 생성



마지막으로 starship 설정을 구성하기 위해 toml 파일을 생성해야 합니다.

mkdir -p ~/.config && touch ~/.config/starship.toml


상세정보를 확인하실 수 있습니다here.

내 starship.toml
최신 버전은 here입니다.

[aws]
disabled = true

[character]
format = "❯❯ "
success_symbol = "❯❯(bold green) "
error_symbol = "❯❯(bold red) "

[directory]
format = "[$path]($style)[$read_only]($read_only_style) "
truncation_length = 4
truncate_to_repo = false
truncation_symbol = "…/"

[git_status]
disabled = true

[hostname]
disabled = true

# Disable the package module, hiding it from the prompt completely
[package]
disabled = true

[time]
disabled = false
time_format = "%Y-%m-%d %H:%M"
utc_time_offset = "local"

[username]
style_root = "green bold"
format = "😈 [$user]($style) "
disabled = false
show_always = true

[git_branch]
symbol = "💻 "
truncation_length = 20
truncation_symbol = "…"
style="bold purple"

[rust]
format = "via [⚙️ $version](bold red)"

[python]
pyenv_version_name = true

[nodejs]
format = "via [🤖 $version](bold green) "

좋은 웹페이지 즐겨찾기