diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-14 15:04:59 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-14 15:04:59 +0100 |
commit | 9da0cbe5efc55d5c8a7726ab2ca57595f2677c8f (patch) | |
tree | 7598bef7633dd98c352f6ee6b1608690f8230235 /dot_tmux.conf | |
parent | ae2e8ad7c2e1812b171eeca57ac00f8ba5d20cf5 (diff) | |
download | user-config-9da0cbe5efc55d5c8a7726ab2ca57595f2677c8f.tar.gz user-config-9da0cbe5efc55d5c8a7726ab2ca57595f2677c8f.zip |
Move files around
Diffstat (limited to 'dot_tmux.conf')
-rw-r--r-- | dot_tmux.conf | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/dot_tmux.conf b/dot_tmux.conf deleted file mode 100644 index 012bb4f..0000000 --- a/dot_tmux.conf +++ /dev/null @@ -1,54 +0,0 @@ -# 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 colour6 - |