-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
50 lines (38 loc) · 1.54 KB
/
.tmux.conf
File metadata and controls
50 lines (38 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
set -g default-terminal "${TERM}"
set -ga terminal-overrides ",screen-256color*:Tc"
unbind C-b
set -g prefix C-a
bind C-a send-prefix
set -g mouse on
set -g base-index 1
set -g detach-on-destroy off
set -g status-position 'top'
set -g status-justify 'absolute-centre'
set -g status-style 'bg=#1A1D23 fg=#c0c8d8'
set -g window-status-current-style "bg=#3b4252 fg=#c0c8d8 bold"
set -g window-status-format " #I:#W "
set -g window-status-current-format " #I:#W "
set -g status-left '#[fg=#d79784]#[bold] #S '
set -g status-right '%b %d %Y %l:%M %p '
set -g status-left-length 20
set -s escape-time 0
set -g history-limit 50000
set -g display-time 4000
set -g focus-events on
setw -g mode-keys vi
bind -T copy-mode-vi v send-keys -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
bind ^ last-window
bind k select-pane -U
bind j select-pane -D
bind h select-pane -L
bind l select-pane -R
bind r source-file ~/.tmux.conf
bind f run-shell "tmux neww ~/.local/bin/tmux-sessionizer"
bind C run-shell "tmux neww ~/.local/bin/tmux-sessionizer -p ~/.config"
bind D run-shell "tmux neww ~/.local/bin/tmux-sessionizer -p ~/.dotfiles"
bind V run-shell "tmux neww ~/.local/bin/tmux-sessionizer -p ~/.config/nvim"
bind N run-shell "tmux neww ~/.local/bin/tmux-sessionizer -p ~/Documents/Notes"
bind W run-shell "tmux neww ~/.local/bin/tmux-sessionizer ~/Sources/work"
bind P run-shell "tmux neww ~/.local/bin/tmux-sessionizer ~/Sources/personal"
bind T run-shell "tmux neww ~/.local/bin/tmux-sessionizer ~/Sources/testing"