Overview
Comment: | tmux: Add overrides for xterm* |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
517b62895d847852ff237f6a608d63aa |
User & Date: | js 2021-11-13 09:17:15 |
Context
2021-11-13
| ||
09:23 | Switch to yt-dlp check-in: 5c11237bdf user: js tags: trunk | |
09:17 | tmux: Add overrides for xterm* check-in: 517b62895d user: js tags: trunk | |
2021-10-31
| ||
16:09 | vim/syntax/objc.vim: Add OFNotificationName check-in: 590f2da605 user: js tags: trunk | |
Changes
Changes to tmux/tmux.conf.
1 2 3 4 5 6 7 8 9 10 11 12 | set -g default-terminal screen-256color set -g mouse on setw -g mode-keys vi set -g escape-time 0 set -g status-style bg=colour233,fg=colour25 set -g status-left "#[fg=colour52]#S " set -g status-right "#[fg=colour22]#(whoami)#[fg=colour28]@#h #[fg=colour40]#(date +%H:%M)" set -w -g window-status-current-style fg=colour39,bg=colour236 set -w -g window-status-bell-style fg=colour233,bg=colour124 bind c new-window -c "#{pane_current_path}" bind '"' split-window -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | set -g default-terminal screen-256color set -g mouse on setw -g mode-keys vi set -g escape-time 0 set -g status-style bg=colour233,fg=colour25 set -g status-left "#[fg=colour52]#S " set -g status-right "#[fg=colour22]#(whoami)#[fg=colour28]@#h #[fg=colour40]#(date +%H:%M)" set -w -g window-status-current-style fg=colour39,bg=colour236 set -w -g window-status-bell-style fg=colour233,bg=colour124 bind c new-window -c "#{pane_current_path}" bind '"' split-window -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" set-option -sa terminal-overrides ",xterm*:Tc" |