터미널에 필요한 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와 함께 zsh를 설치합니다( Homebrew ):

  • 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
    )
    


  • zsh ⚡️ 다시 시작



  • 우주선 프롬프트




  • 이 저장소 복제:

  • git clone https://github.com/spaceship-prompt/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1
    


  • oh-my-zsh 사용자 정의 테마 디렉토리에 대한 Symlinkspaceship.zsh-theme:

  • ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
    


  • ZSH_THEME="spaceship"에서 .zshrc를 설정합니다.

  • 그게 다야! 이제 설정이 완료되었습니다 🦾

    좋은 웹페이지 즐겨찾기