1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iTerm2+fish shell環境のTips

Last updated at Posted at 2018-07-19

iterm2+fish shellの僕の環境のtipsなど

key bind

Key 動作
cmd+shift+h クリップボード履歴
cmd+d ペイン分割
cmd+shift+d ペイン縦分割
cmd+[/] 次/前のペインに移動
cmd+l clearと一緒で画面のクリア
##Tips
カーソルで選択してクリックするだけでクリップボードにコピーされているので便利

config

~/.config/fish/config.fishにある

右の日付や時間を非表示にする(fish)

参考

~/.config/fish/config.fish
set -U theme_display_date no 
set -U theme_display_cmd_duration no

作業ログを取る(iTerm2)

参考

  • 設定ファイルを開く

    [profile]->[Open Profiles..]->[Edit Profiles..]
  • 上の行から[Session]を選択し,下の[Automatically log session input to files in:]をチェック
  • 下のボックスにlogを出力するディレクトリパスを入力【左に!が出ているときはそのディレクトリに権限がない】
  • 再起動して完了

テキストエディタなどで表示すると制御文が混在しているので,catなどで開くと良い

aliasについて

fishではaliasが効かないという話があるが,config.fishに書くと使える.

~/.config/fish/config.fish
alias la='ls -la'
alias ..='cd ..'

などを追加しておくと便利

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?