LoginSignup
1
1

More than 3 years have passed since last update.

Alacrittyでfish shell立ち上げ時にtmuxを起動する方法

Last updated at Posted at 2020-05-05

設定ファイルであるalacritty.yml(~/.config/alacritty/alacritty.ymlとかにあるはず)を以下のようにし

alacritty.yml
...
shell:
   program: /usr/local/bin/fish
   args:
     - --login
...

config.fish(~/.config/fish/config.fishとかにあるはず)を以下のようにすればいい。

config.fish
...
if status is-interactive
and not set -q TMUX
    exec tmux
end
...

参考

1
1
1

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
1