diff options
author | luxagraf <sng@luxagraf> | 2021-04-20 20:07:58 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-04-20 20:07:58 -0400 |
commit | 3cc80ba61060765a5981da3e7ab8cda8dc03e447 (patch) | |
tree | 28e087442836067ebcda2fdacb529c687ac36e8a /.tmux.conf | |
parent | b6233aa19dc68bf266ef06f27aae69fa3210f046 (diff) |
added latest environment tweaks
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -46,16 +46,16 @@ bind ^A select-pane -t :.+ # smart pane switching with awareness of vim splits bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-h) || tmux select-pane -L" -bind -n C-n run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D" -bind -n C-p run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U" -#bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R" +bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D" +bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U" +bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R" #alternative for ctrl-l bind l send-keys 'C-l' # setup a decent environment bind m source-file ~/.tmux/thesetup bind C-f source-file ~/.tmux/write-fict -#bind C-l source-file ~/.tmux/write-lux +bind C-x source-file ~/.tmux/write-lux bind C-w source-file ~/.tmux/write-wire bind C-d source-file ~/.tmux/dev |