[mac]おすすめコマンドライン環境
iTerm2とzshをインストール
macでは、デフォルトではターミナル
というアプリが入っています。
デフォルトの環境だと、bash
というシェルがターミナルによって機動します。
今回は、コマンドライン環境としてより使い勝手のいいiterm2
を入れます。
機動させるシェルは、zsh
に変更させます。
zsh
にする理由は、コマンドラインでの補完処理やテーマなどを変えられるなどの機能が充実しているためです。
環境
- sierra 10.12.1
- MacBook Pro (Retina, 13-inch, Early 2013)
iterm2
iterm2のインストール
- 下記サイトのDownloadからダウンロードしてインストール
http://www.iterm2.com/#/section/home
- メニューバーの
Check For Update
をクリックして、最新のバージョンにupdate
設定
- 画面サイズを設定
iterm2のインストール
- 下記サイトのDownloadからダウンロードしてインストール http://www.iterm2.com/#/section/home
- メニューバーの
Check For Update
をクリックして、最新のバージョンにupdate
設定
- 画面サイズを設定
iTerm2 -> Profile のprofilesのwindowで設定できます
便利機能
よく使うショートカット
window操作系
-
cmd-n
(window新規作成) -
cmd-t
(tab新規作成) -
cmd-w
(tab削除) -
cmd-d
(縦画面分割でtab新規作成) -
cmd-shift-d
(横画面分割でtab新規作) -
cmd-z
(削除したtabの復旧(5秒以内))
移動系
- cmd-[番号] (指定した番号のtabを開く)
-
cmd-alt-→
(右のタブに移動) -
cmd-alt-←
(左のタブに移動) -
cmd-shift-[
(左のtabに移動(画面分割時)) -
cmd-shift-]
(右のtabに移動(画面分割時))
便利機能系
-
cmd-f
(検索) -
cmd-shift-h
(クリップボード機能)
zsh
zshをインストール・設定
- インストール
デフォルトでmacには入っていますが、最新版をインストール
$brew install zsh
$brew install zsh-completions
- 設定
zshをシェルとして開ける様に、
/etc/shells
に/usr/local/bin/zsh
を追加する
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/usr/local/bin/zsh
$brew install zsh
$brew install zsh-completions
/etc/shells
に/usr/local/bin/zsh
を追加する# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/usr/local/bin/zsh
デフォルトで機動するシェルを設定
$chsh -s /usr/local/bin/zsh
再起動で確認できます。
oh-my-zshでテーマ設定
- インストール
$curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
- 設定
~/.zshrc
に設定を記述する。
ZSH_THEME="robbyrussell"
source
コマンドで設定を再度読み込ませるとテーマが適用される。(再起動するだけでもok)
`$source ~/.zshrc`
- その他環境によっての設定 環境にあったセットアップをする必要がある場合は、他にも追記します。 下記を参考にしてみて下さい。 https://github.com/hkengo/.zshrc/blob/master/.zshrc
参考
http://qiita.com/koh110/items/b7e9471330308fdb7250
https://codeiq.jp/magazine/2014/01/5143/
http://qiita.com/g_ryotaro/items/a45bb061da7684ea24fd
http://qiita.com/koh110/items/b7e9471330308fdb7250
https://codeiq.jp/magazine/2014/01/5143/
http://qiita.com/g_ryotaro/items/a45bb061da7684ea24fd
Author And Source
この問題について([mac]おすすめコマンドライン環境), 我々は、より多くの情報をここで見つけました https://qiita.com/kenbu/items/f65d52ba77fee42a4a12著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .