使いやすい端末を設定する


一日中ログやデータベースと付き合っているプログラマーとして、自分の端末を少し設置して使いやすいツールに改造するのは態度の問題です.
iterm2
インストール
iterm 2これは言うまでもなく、泥棒は使いやすく、持参した端末よりも強い.
コンフィギュレーション
iTem 2をデフォルト端末に設定:
//       
iTerm2 -> Make iTerm2 Default Term
//        /      
    ->keys->Hotkey->Show/hide iTerm2 with a system-wide hotkey

カラースキーム
solarized     。 http://ethanschoonover.com/solarized     

好みの設定->profiles->colors->Color Presets->import->解凍したSolarized Darkをインポートします.itermcolors.
oh-my-zshのインストール
github:https://github.com/robbyrussell/oh-my-zsh
// curl
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
// wget 
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

テーマ
インストールに成功するとvimで隠しファイルを開きます.zshrc、テーマをagnosterに変更:テーマ効果:https://github.com/robbyrussell/oh-my-zsh/wiki/Themes表示
ZSH_THEME="agnoster"はこのトピックにデフォルト設定されています
このトピックを適用するには、特殊なフォントサポートが必要です.そうしないと、文字化けしてしまいます.フォントを構成します.1.Mesloフォントを使用して、接続をオンにしてview rawをクリックしてフォントをダウンロードします.2.システムのフォントブックにフォントをインストールします.3.iTerm 2にフォントを適用すると、自分では14 pxのサイズを設定して快適に見るのが好きです(iTerm->Preferences->Profiles->Text->Change Font).4.iTerm 2ウィンドウを再び開くと、効果が見えます.
オートプロンプトコマンド
倉庫をローカルにクローンする~/.oh-my-zsh/custom/pluginsパス下
cd ~/.oh-my-zsh/custom/plugins
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
#    .zshrc
vi ~/.zshrc
// plugins=(zsh-autosuggestions git)

構文ハイライト
brew install zsh-syntax-highlighting
//   .zshrc  ,    
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
//     
source ~/.zshrc

tmux多重セッションプラグイン
brew install tmux