diff --git a/global/.tmux.conf b/global/.tmux.conf index bc70d08..6bd2203 100755 --- a/global/.tmux.conf +++ b/global/.tmux.conf @@ -32,6 +32,9 @@ bind -n M-p last-window bind -n M-e split-window -v -c '#{pane_current_path}' bind -n M-d split-window -h -c '#{pane_current_path}' bind -n M-W kill-pane +# resize to bottom +bind -n M-j resize-pane -D 5 +bind -n M-k resize-pane -U 5 # Automatic restore # set -g @continuum-restore 'on' diff --git a/macos/.config/alacritty/keybindings.toml b/macos/.config/alacritty/keybindings.toml index 22ed925..f3881ae 100644 --- a/macos/.config/alacritty/keybindings.toml +++ b/macos/.config/alacritty/keybindings.toml @@ -8,6 +8,8 @@ bindings = [ {key = "T", mods = "Command", chars = "\u001Bt" }, {key = "E", mods = "Command", chars = "\u001Be" }, {key = "D", mods = "Command", chars = "\u001Bd" }, + {key = "J", mods = "Command", chars = "\u001Bj" }, + {key = "K", mods = "Command", chars = "\u001Bk" }, # tmux resurrect plugin {key = "R", mods = "Command", chars = "\u0001\u0012" }, {key = "S", mods = "Command", chars = "\u0001\u0013" },