Overview
Comment: | tmux: Keep current directory on c/"/% |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9ad23952794775a5f992f6b00be094c0 |
User & Date: | js 2020-05-21 16:03:12 |
Context
2020-05-23
| ||
14:55 | zshrc: Add aliases for fossil check-in: 1462a28b63 user: js tags: trunk | |
2020-05-21
| ||
16:03 | tmux: Keep current directory on c/"/% check-in: 9ad2395279 user: js tags: trunk | |
2020-05-09
| ||
13:10 | config.fish: Disable cursor blinking check-in: 0a734afdea user: js tags: trunk | |
Changes
Changes to tmux/tmux.conf.
1 2 3 4 5 6 7 | set -g default-terminal screen-256color setw -g mode-keys vi set -g status-style bg=colour233,fg=colour25 set -g status-left "#[fg=colour52]#S #[fg=colour24]⧉ " 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 | | | | < < < < < | 1 2 3 4 5 6 7 8 9 10 11 | set -g default-terminal screen-256color setw -g mode-keys vi set -g status-style bg=colour233,fg=colour25 set -g status-left "#[fg=colour52]#S #[fg=colour24]⧉ " 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 -ag terminal-overrides ",*:XT@" |