Skip to content

Instantly share code, notes, and snippets.

@Kazunari-h
Last active May 16, 2019 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kazunari-h/b38bd8bb30721733347076ad363af1bc to your computer and use it in GitHub Desktop.
Save Kazunari-h/b38bd8bb30721733347076ad363af1bc to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
# update homebrew formula
echo " + Updating Homebrew..."
brew update >/dev/null
#
# Check for carthage
#
if brew cask info intellij-idea | grep "Not installed" > /dev/null 2>&1
then
echo " + Installing Intellij..."
brew cask install intellij-idea
else
echo " + Installing Intellij..."
brew cask reinstall intellij-idea
fi
echo " + Installing Pleiades..."
cd ~/Downloads/
wget http://ftp.jaist.ac.jp/pub/mergedoc/pleiades/build/stable/pleiades-mac.zip
mkdir pleiades-mac && unzip pleiades-mac.zip -d pleiades-mac
open pleiades-mac/setup.app
cat << EOS
Pleiadesの日本語化プラグインのセットアップの画面で
日本語化するアプリケーションを設定して日本語化のボタンを押してください。
(intellij-idea)
intellij-ideaを開くと日本語されたintellij-ideaが使えます。
EOS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment