aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-02-10 11:14:08 -0800
committerclarkzjw <[email protected]>2023-02-10 11:14:08 -0800
commit989f91d86cbb57c9f0cc6b81dabbe1dfb6d4f074 (patch)
tree78bb9d28d1dbf8bfaf4758670b66a3fbed69daf4
parent73c2657b8098eb83aa8a87e8e4f90d51c80549cb (diff)
downloaddotfiles-989f91d86cbb57c9f0cc6b81dabbe1dfb6d4f074.tar.gz
add tmux conf
-rw-r--r--dot_tmux.conf29
1 files changed, 29 insertions, 0 deletions
diff --git a/dot_tmux.conf b/dot_tmux.conf
new file mode 100644
index 0000000..e63ded6
--- /dev/null
+++ b/dot_tmux.conf
@@ -0,0 +1,29 @@
1# List of plugins
2set -g @plugin 'tmux-plugins/tpm'
3set -g @plugin 'tmux-plugins/tmux-sensible'
4
5# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
6run '~/.tmux/plugins/tpm/tpm'
7
8set -g @plugin 'seebi/tmux-colors-solarized'
9
10# switch panes using Alt-arrow without prefix
11bind -n M-Left select-pane -L
12bind -n M-Right select-pane -R
13bind -n M-Up select-pane -U
14bind -n M-Down select-pane -D
15
16# remap prefix from 'C-b' to 'C-a'
17unbind C-b
18set-option -g prefix C-a
19bind-key C-a send-prefix
20
21# split panes using | and -
22bind \\ split-window -h
23bind - split-window -v
24unbind '"'
25unbind %
26
27# reload config file (change file location to your the tmux.conf you want to use)
28bind r source-file ~/.tmux.conf
29
Powered by cgit v1.2.3 (git 2.41.0)