LoginSignup
0
0

More than 5 years have passed since last update.

.tmux.conf

Last updated at Posted at 2018-05-31

ほぼiTerm2と同じようなコマンドでペイン分割などができる

tmux.conf
##
# set は set-option のエイリアス
# setw は set-window-option のエイリアス

set -g prefix C-q

unbind C-b

set -sg escape-time 0

set -g base-index 1

setw -g pane-base-index 1

bind -n C-d split-window -h -c "#{pane_current_path}"

bind -n C-f split-window -v -c "#{pane_current_path}"

bind -n C-o select-pane -t :.+

bind -n C-w kill-pane

set -g default-terminal screen-256color

set -g pane-active-border-fg black
set -g pane-active-border-bg cyan

set -g mouse on

bind -n C-t new-window

set -g status-position top

コピペがShiftを押しながらになるので、やりずらい
なので、iTerm2の方で選択したらクリップボードに取り込まれるようにする

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