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

35 lines
590 B
Plaintext
Raw 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-05 15:42:58 +02:00
# HOWTO copy: PREFIX+[, space, select text, enter, PREFIX+]
# enable mouse
set -g mouse on
2018-05-05 14:58:14 +02:00
# powerline
run-shell "powerline-daemon -q || true"
2018-05-05 14:58:14 +02:00
source "/usr/share/powerline/bindings/tmux/powerline.conf"
# plugins
set -g @plugin 'tmux-plugins/tpm'
run '~/.tmux/plugins/tpm/tpm'