configs  Check-in [9ad2395279]

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: 9ad23952794775a5f992f6b00be094c075a729e8c0ee91ab5e02c9af469f42fb
User & Date: js on 2020-05-21 16:03:12
Other Links: manifest | tags
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

Modified tmux/tmux.conf from [df3a802d63] to [2755add910].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 -r C-h select-pane -L
bind -r C-j select-pane -D
bind -r C-k select-pane -U
bind -r C-l select-pane -R
bind -r M-h resize-pane -L
bind -r M-j resize-pane -D
bind -r M-k resize-pane -U
bind -r M-l resize-pane -R
set -ag terminal-overrides ",*:XT@"







|
|
|
<
<
<
<
<

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@"