1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

メモ:hyperでfishを使う

Posted at

hyperでfishを使う

fishの使用

fishのインストール

brewでfishをインストールする。

brew install fish

hyperのshellをfishに設定

まず,.hyper.js をviで開く.

vi ~/.hyper.js

config.shell の値がデフォルトは''になっているので、'/usr/local/bin/fish' に修正する。

module.exports = {
  config: {
    shell: '/usr/local/bin/fish'
  }
}

設定の保存が完了したらターミナルを再起動すると、fishが使えるようになります。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?