From 8712d896b39fd57cdffd27341071679c8408cd33 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 7 Oct 2013 17:17:52 -0400 Subject: change around a lot of keybindings - swap control and alt - map tapping left control to pressing escape - map the menu key to right super, and caps lock to compose - move window manager shortcuts to super - use ^F instead of ^A for the tmux modifier key - a few other miscellaneous changes to make certain keybindings more natural with the new modifier layout --- tmux.conf | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'tmux.conf') diff --git a/tmux.conf b/tmux.conf index 58320f0..425eb76 100644 --- a/tmux.conf +++ b/tmux.conf @@ -4,8 +4,8 @@ set -g bell-action any # lots of scrollback set -g history-limit 4096 -# use ^A rather than ^B for the prefix key -set -g prefix ^A +# use ^F rather than ^B for the prefix key +set -g prefix ^F # hide the statusbar by default set -g status off @@ -34,12 +34,10 @@ set -g message-bg green set -g escape-time 50 # keybindings -bind a send-prefix -bind A command-prompt "rename-window %%" -bind ^A choose-window -bind ^C new-window +bind f send-prefix +bind ^F choose-window +bind ^N new-window bind ^D detach-client -bind h command-prompt "new-window 'exec man %%'" bind ^S set status unbind ^B -- cgit v1.2.3-54-g00ecf