Fix editor wrapping long lines.

This commit is contained in:
2021-01-28 20:35:05 -06:00
parent 816bad0294
commit 75de483d0e
2 changed files with 368 additions and 957 deletions

1265
.tmux.conf

File diff suppressed because it is too large Load Diff

View File

@ -22,6 +22,18 @@ bind -n S-Right next-window
bind-key -n C-S-Left swap-window -t -1 bind-key -n C-S-Left swap-window -t -1
bind-key -n C-S-Right swap-window -t +1 bind-key -n C-S-Right swap-window -t +1
# Use Alt-vim keys without prefix key to switch panes
bind -n M-h select-pane -L
bind -n M-j select-pane -D
bind -n M-k select-pane -U
bind -n M-l select-pane -R
# Use Alt-arrow keys without prefix key to switch panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Syncronize panes toggle # Syncronize panes toggle
bind e set-window-option synchronize-pane \; display 'Pane sync toggled' bind e set-window-option synchronize-pane \; display 'Pane sync toggled'