터미널에 필요한 3가지 플러그인
시작하기 전에
zsh
를 설치해야 합니다.zsh
가 무엇입니까?ZSH, also called the Z shell, is an extended version of the Bourne Shell (sh), with plenty of new features, and support for plugins and themes. Since it’s based on the same shell as Bash, ZSH has many of the same features, and switching over is a breeze.
brew install zsh
oh-my-zsh
(zsh 구성 관리를 위한 프레임워크):sh -c "$(curl -fsSL
https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/
master/tools/install.sh)"
바라건대 모든 것이 순조롭게 진행되었고 이제 다음 화면이 표시됩니다.
이제 플러그인 🔥
zsh-자동 제안
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
Oh My Zsh
의 플러그인 목록에 플러그인을 추가합니다(~/.zshrc
내부):plugins=(
# other plugins...
zsh-autosuggestions
)
zsh 구문 강조
몇 가지 예:
이전:
이후:
oh-my-zsh의 플러그인 디렉토리에 이 저장소를 복제하십시오:
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
~/.zshrc
에서 플러그인을 활성화합니다.plugins=(
# other plugins...
zsh-autosuggestions
zsh-syntax-highlighting
)
우주선 프롬프트
git clone https://github.com/spaceship-prompt/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1
spaceship.zsh-theme
:ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
ZSH_THEME="spaceship"
에서 .zshrc
를 설정합니다. 그게 다야! 이제 설정이 완료되었습니다 🦾
Reference
이 문제에 관하여(터미널에 필요한 3가지 플러그인), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/danielbellmas/the-only-3-plugins-youll-ever-need-for-your-terminal-1bg4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)