1
0
mirror of https://github.com/artizirk/dotfiles.git synced 2024-07-03 13:20:10 +03:00
dotfiles/.config/tmux/tmux.conf

16 lines
251 B
Plaintext
Raw Normal View History

2021-05-18 15:15:27 +03:00
set -g base-index 1
set -g mouse on
2021-05-18 17:16:58 +03:00
unbind C-b
set -g prefix C-a
bind C-a send-prefix
2021-05-18 15:15:27 +03:00
set -g set-titles on
set -g set-titles-string "#T"
2021-05-18 17:16:58 +03:00
set -g status-style bg=black
2021-05-18 15:15:27 +03:00
# More friendly split pane
bind-key h split-window -h
bind-key v split-window -v