[
  {
    "path": "README.md",
    "content": "# zsh_to_fish\nHow to make zsh like fish?\n\n\n1. Install oh-my-zsh\n```\nsh -c \"$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)\"\n```\n\n2. Clone necessary plugins.\n```\ngit clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions\ngit clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search\ngit clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting\n```\n\n3. Add plugins to `~/.zshrc` as\n```\nplugins=( [plugins...] zsh-autosuggestions history-substring-search zsh-syntax-highlighting)\n```\nNote: make sure zsh-syntax-highlighting is the last one in the above list.\n\n4. Fix background theme issues(, not necessary depends on your theme.)\nAdd the following line to your `~/.zshrc`.\n```\nZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white'\n```\n\n5. Restart zsh\n```\nsource ~/.zshrc\n```\n"
  }
]