diff --git a/i3/config b/i3/config index e647d33..787fad3 100644 --- a/i3/config +++ b/i3/config @@ -11,6 +11,8 @@ set $mod Mod4 +# Rebind right alt to left super +exec --no-startup-id setxkbmap -option altwin:right_alt_win # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. # font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 5be1883..6122d49 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -34,3 +34,11 @@ bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm' +# Keymaps for resize-pane +bind-key -r -T prefix C-Up resize-pane -U 10 +bind-key -r -T prefix C-Down resize-pane -D 10 +bind-key -r -T prefix C-Left resize-pane -L 10 +bind-key -r -T prefix C-Right resize-pane -R 10 + +# Move status bar to top or bottom +set-option -g status-position bottom