Overview
Comment: | tmux.conf: Remove useless Unicode character |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
330686309b7ce96f6a15cc48aad968b6 |
User & Date: | js on 2020-09-10 03:50:53 |
Other Links: | manifest | tags |
Context
2020-09-10
| ||
20:06 | zshrc: Add SUDO_PROMPT check-in: ff67300638 user: js tags: trunk | |
03:50 | tmux.conf: Remove useless Unicode character check-in: 330686309b user: js tags: trunk | |
2020-09-09
| ||
19:44 | zshrc: Clean up now unused variable check-in: 3a29822385 user: js tags: trunk | |
Changes
Modified tmux/tmux.conf from [498f14868e] to [46342081a8].
1 2 3 4 | set -g default-terminal screen-256color set -g mouse on setw -g mode-keys vi set -g status-style bg=colour233,fg=colour25 | | | 1 2 3 4 5 6 7 8 9 10 11 | set -g default-terminal screen-256color set -g mouse on setw -g mode-keys vi 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}" |