Oh My Zsh에서 starship으로 전환하는 방법 🚀
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) "
Reference
이 문제에 관하여(Oh My Zsh에서 starship으로 전환하는 방법 🚀), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/0xkoji/how-to-switch-from-oh-my-zsh-to-starship-4nck텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)