diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-14 15:09:26 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-14 15:09:26 +0100 |
commit | 9d6c55653eab4510fcaa4e91685bab11d0a3ccbb (patch) | |
tree | f71a1f9db3395bf4335dff13933ec98c384eec60 /lindy/dot_tmux.conf | |
parent | 7eae9189492cc0372382cf808a8dbcb9cb722639 (diff) | |
download | user-config-9d6c55653eab4510fcaa4e91685bab11d0a3ccbb.tar.gz user-config-9d6c55653eab4510fcaa4e91685bab11d0a3ccbb.zip |
Add lindy files
Diffstat (limited to 'lindy/dot_tmux.conf')
-rw-r--r-- | lindy/dot_tmux.conf | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lindy/dot_tmux.conf b/lindy/dot_tmux.conf new file mode 100644 index 0000000..dc80775 --- /dev/null +++ b/lindy/dot_tmux.conf @@ -0,0 +1,54 @@ +# KEY BINDINGS + +setw -g mode-keys vi + +# remap prefix to Control + a +set -g prefix C-q +unbind C-b +bind C-q send-prefix + +unbind q +bind-key q copy-mode + +unbind p +bind p paste-buffer + +# force a reload of the config file +unbind r +bind r source-file ~/.tmux.conf + +# quick pane cycling +unbind ^A +bind ^A select-pane -t :.+ + +# switch panes using vim-like bindings C-a hjkl +unbind h +unbind j +unbind k +unbind l +bind h select-pane -L +bind l select-pane -R +bind k select-pane -U +bind j select-pane -D +# switch panes using bindings C-q C-hl +unbind ^H +unbind ^L +bind ^H previous-window +bind ^L next-window + +# OTHER OPTIONS + +set -g mouse on + +set -g escape-time 0 + +# don't rename windows automatically +set-option -g allow-rename off + + +###################### +### DESIGN CHANGES ### +###################### + +set -g status-bg colour2 + |