This repository has been archived on 2021-04-06. You can view files and clone it, but cannot push or open issues/pull-requests.
dotfiles/home/.tmux.conf

37 lines
710 B
Plaintext
Raw Permalink Normal View History

# screen behaviour
unbind C-b
set -g prefix C-a
unbind C-a
bind C-a send-prefix
# config reload
unbind r
bind r source-file ~/.tmux.conf
# more ergonomic splitting
unbind |
bind | split-window -h
unbind -
bind - split-window -v
2018-05-05 15:35:07 +02:00
# more ergnomic window numbers
2018-05-05 15:19:30 +02:00
set -g base-index 1
setw -g pane-base-index 1
2018-05-08 18:53:19 +02:00
# only set window size when client is attached to the specific window
setw -g aggressive-resize on
2018-05-05 15:42:58 +02:00
# HOWTO copy: PREFIX+[, space, select text, enter, PREFIX+]
2018-05-08 18:53:19 +02:00
# disable mouse (prevents simple copying)
set -g mouse off
2020-05-06 15:10:21 +02:00
# Fix vim color scheme breaking
set -g default-terminal "screen-256color"
2020-05-18 18:16:42 +02:00
# Lower escape time for smoother usage in vim
set -sg escape-time 10
2020-05-24 15:39:18 +02:00
source-file ~/.tmux/tmuxline.conf