-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
39 lines (31 loc) · 861 Bytes
/
.tmux.conf
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
# enable colors in prompt
set -g default-terminal "xterm-256color"
# remap prefix from cntl-b to cntl-a
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# make splitting commands easier
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# VIM style commands for switching between window panes
# the M is your Meta key -- usually Alt
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
# enable mouse mode
set -g mouse on
# turn off automatic window renaming
# this allows you to name windows what you want using the , key
set-option -g allow-rename off
# Design changes
# loud or quite
set -g visual-activity off
set -g visual-bell off
set -g visual-silence off
setw -g monitor-activity off
set -g bell-action none
# Theme
run-shell "~/.tmux/themes/nord-tmux/nord.tmux"