Files
dots/files/.tmux.conf
2021-04-02 14:27:28 +02:00

28 lines
576 B
Bash

set -g default-terminal "tmux-256color"
#some vi behaviour
bind-key -r h select-pane -L
bind-key -r j select-pane -D
bind-key -r k select-pane -U
bind-key -r l select-pane -R
bind-key v split-window -h
bind-key s split-window -v
# in order to make escape bindings of programs in tmux work
set -s escape-time 5
# enable mouse
set-option -g mouse on
# start pane index at 1
set -g base-index 1
setw -g pane-base-index 1
# reload bind
bind-key r source-file ~/.tmux.conf
# colors used
# https://github.com/arcticicestudio/nord-tmux
run-shell "~/.tmux/nord-tmux/nord.tmux"