LoginSignup
1
2

More than 5 years have passed since last update.

Spacemacsのターミナルのデフォルトをfish shellに変える

Posted at

Spacemacsのターミナルはデフォルトではbashを使うことになる。
ただ、これは設定を書き換えればfish shellにすることができる。

以下の内容を.spacemacsに記述する。

dotspacemacs-configuration-layers
'(
  ;; ...
  (shell :variables shell-default-term-shell "/usr/local/bin/fish")
  ;; ...
 )

"/usr/local/bin/fish"はfishへのパスを記述するので、環境によって変わる可能性がある。
各自、which fishなどを使って調べておく。

1
2
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
2