tmux: add swap window key bind
Prithu Goswami pg@prithu.dev
Sun, 26 Nov 2023 17:23:35 +0530
3 files changed,
6 insertions(+),
1 deletions(-)
M
config/nvim/lua/highlights.lua
→
config/nvim/lua/highlights.lua
@@ -1,5 +1,4 @@
vim.cmd([[ hi WinSeparator guifg=#505050 guibg=#151515 hi NvimTreeNormalFloat guibg=#151515 - hi Normal guibg=#0b0b0b ]])
M
home/.xinitrc
→
home/.xinitrc
@@ -21,6 +21,7 @@ fi
xset r rate 250 60 setxkbmap -layout 'us,in' -option "grp:shifts_toggle" -option "ctrl:nocaps" +xrandr --dpi 96 #touchpad-conf && toggle_touchpad
M
tmux/tmux.conf
→
tmux/tmux.conf
@@ -20,6 +20,9 @@ bind -r J resize-pane -D 2
bind -r K resize-pane -U 2 bind -r L resize-pane -R 2 +bind -r C-h swap-window -t -1 \; previous-window +bind -r C-l swap-window -t +1 \; next-window + bind \; last-window bind C-o rotate-window@@ -75,6 +78,8 @@ set -g window-status-separator ""
# Window status alignment set -g status-justify centre + +set -g status-position bottom # Pane border set -g pane-border-style bg=default,fg=colour236