diff options
author | sefidel <contact@sefidel.net> | 2022-02-28 18:56:54 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-28 18:56:54 +0900 |
commit | 8fe7f9a37cdc39091066dd40f8368a6228f7e0fd (patch) | |
tree | 55b241a9c3bcebc30eb03e51b3fdcd07cf74d338 | |
parent | e48a25c3a8c8343e3071cf157ecf797b5251b8d6 (diff) | |
download | nixrc-8fe7f9a37cdc39091066dd40f8368a6228f7e0fd.tar.gz nixrc-8fe7f9a37cdc39091066dd40f8368a6228f7e0fd.zip |
feat(home/base): swap-panes on Alt
-rw-r--r-- | home/profiles/base/config/tmux.nix | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/home/profiles/base/config/tmux.nix b/home/profiles/base/config/tmux.nix index 7b3f90c..0b5eea4 100644 --- a/home/profiles/base/config/tmux.nix +++ b/home/profiles/base/config/tmux.nix @@ -30,10 +30,8 @@ bind -n C-M-k resize-pane -U 2 bind -n C-M-l resize-pane -R 2 - bind -n C-S-h swap-pane -U - bind -n C-S-j swap-pane -U - bind -n C-S-k swap-pane -D - bind -n C-S-l swap-pane -D + bind -n M-j swap-pane -U + bind -n M-k swap-pane -D # prefix-m marks window, prefix-u swaps current with marked bind u swap-pane |