오 마이 Zsh + 우주선

3967 단어 spaceshipohmyzsh
Zsh 설치

sudo apt-get install zsh


szh 복제

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"


우주선 설치

git clone https://github.com/denysdovhan/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt"


심볼릭 링크 만들기

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


우주선 테마 설정, ~/.zshrc에 입력

sudo nano ~/.zshrc


~/.zshrc 내에서 라인을 찾습니다.

ZSH_THEME and change it to > ZSH_THEME="spaceship"


우주선 구성

~/.zshrc 파일 끝에 다음 내용을 추가합니다.

SPACESHIP_PROMPT_ORDER=(
  user          # Username section
  dir           # Current directory section
  host          # Hostname section
  git           # Git section (git_branch + git_status)
  hg            # Mercurial section (hg_branch  + hg_status)
  exec_time     # Execution time
  line_sep      # Line break
  vi_mode       # Vi-mode indicator
  jobs          # Background jobs indicator
  exit_code     # Exit code section
  char          # Prompt character
)
SPACESHIP_USER_SHOW=always
SPACESHIP_PROMPT_ADD_NEWLINE=false
SPACESHIP_CHAR_SYMBOL="❯"
SPACESHIP_CHAR_SUFFIX=" "


플러그인

플러그인을 구성하려면 변수 배열에서 플러그인 이름을 추가하거나 제거하여 ~/.zshrc 파일을 편집해야 합니다.

plugins=(git)


zsh-히스토리-하위 문자열-검색
  • 히스토리 기능 포함

  • git clone https://github.com/zsh-users/zsh-history-substring-search.git ~/.oh-my-zsh/custom/plugins/zsh-history-substring-search
    


    zsh 구문 강조
  • 명령 팩을 입력할 때 강조 표시

  • git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
    


    zsh-자동 제안
  • 입력을 기반으로 기록을 기반으로 명령 제안

  • git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
    


    fzf 로케이터
  • ctrl+t를 사용하면 시스템의 모든 파일/디렉토리를 검색할 수 있습니다.

  • git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/install
    

    좋은 웹페이지 즐겨찾기