79 lines
2.2 KiB
Bash
79 lines
2.2 KiB
Bash
set -g history-limit 200000
|
|
set -g mouse off
|
|
set -g base-index 1
|
|
set -gw pane-base-index 1
|
|
set -g mode-keys emacs
|
|
# Previously set to tmux-256color and xterm-256color
|
|
set -g default-terminal xterm-256color
|
|
set -g escape-time 0
|
|
set -g repeat-time 0
|
|
set -g status on
|
|
|
|
set -g status-style bg=#66ccff,fg=black,
|
|
set -g window-status-style bg=#ccffff,fg=black
|
|
set -g window-status-current-style bg=red,fg=white
|
|
|
|
set -g status-left-style fg=black,bold
|
|
set -g status-right-style fg=black,bold
|
|
|
|
unbind -T copy-mode C-Space
|
|
unbind -T copy-mode v
|
|
bind -T copy-mode v send-keys -X begin-selection
|
|
unbind -T copy-mode C-w
|
|
unbind -T copy-mode y
|
|
bind -T copy-mode y send-keys -X copy-selection-and-cancel
|
|
unbind -T copy-mode Y
|
|
bind -T copy-mode Y send-keys -X pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard"
|
|
|
|
unbind -T copy-mode j
|
|
unbind -T copy-mode k
|
|
unbind -T copy-mode l
|
|
unbind -T copy-mode \;
|
|
|
|
bind -T copy-mode j send-keys -X cursor-left
|
|
bind -T copy-mode k send-keys -X cursor-down
|
|
bind -T copy-mode l send-keys -X cursor-up
|
|
bind -T copy-mode \; send-keys -X cursor-right
|
|
|
|
%hidden start_command="zsh -l"
|
|
%hidden small_resize="3"
|
|
%hidden big_resize="13"
|
|
|
|
unbind C
|
|
unbind c
|
|
bind C new-window
|
|
bind c new-window $start_command
|
|
unbind \"
|
|
bind \" split-window -v -c "#{pane_current_path}" $start_command
|
|
unbind %
|
|
bind % split-window -h -c "#{pane_current_path}" $start_command
|
|
unbind Q
|
|
bind Q kill-session
|
|
# This binding is for gays. I don't use it. Because I'm not gay.
|
|
# bind h select-pane -t "{left-of}"
|
|
bind j select-pane -L
|
|
bind k select-pane -D
|
|
bind l select-pane -U
|
|
bind \; select-pane -R
|
|
|
|
#set -ga terminal-overrides ",*:ctrlsem=\033[69;50S"
|
|
#set -ga terminal-overrides ",*:altsem=\033[69;2S"
|
|
|
|
set -s user-keys[0] "\e[69;50S"
|
|
set -s user-keys[1] "\e[69;2S"
|
|
bind -n User0 send-keys "\e[69;50S"
|
|
bind -n User1 send-keys "\e[69;2S"
|
|
|
|
bind C-j resize-pane -L $small_resize
|
|
bind C-k resize-pane -D $small_resize
|
|
bind C-l resize-pane -U $small_resize
|
|
bind User0 resize-pane -R $small_resize
|
|
|
|
bind M-j resize-pane -L $big_resize
|
|
bind M-k resize-pane -D $big_resize
|
|
bind M-l resize-pane -U $big_resize
|
|
bind User1 resize-pane -R $big_resize
|
|
|
|
|
|
bind r source-file ~/.tmux.conf \; display "Config reloaded"
|