@askexenow/exe-os 0.8.87 → 0.8.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/tmux.conf +21 -5
- package/package.json +1 -1
package/dist/assets/tmux.conf
CHANGED
|
@@ -14,23 +14,39 @@ set -g default-terminal "tmux-256color"
|
|
|
14
14
|
set -ga terminal-overrides ",*256col*:Tc"
|
|
15
15
|
|
|
16
16
|
# Scroll history
|
|
17
|
-
set -g history-limit
|
|
17
|
+
set -g history-limit 50000
|
|
18
|
+
|
|
19
|
+
# Copy to macOS clipboard on mouse drag select
|
|
20
|
+
set -g copy-command "pbcopy"
|
|
21
|
+
bind -T copy-mode MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
22
|
+
bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
18
23
|
|
|
19
24
|
# Vi-style copy mode
|
|
20
25
|
setw -g mode-keys vi
|
|
21
26
|
bind -T copy-mode-vi v send-keys -X begin-selection
|
|
22
27
|
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
23
28
|
|
|
29
|
+
# Blue selection highlight
|
|
30
|
+
set -g mode-style "bg=#1a73e8,fg=#ffffff"
|
|
31
|
+
|
|
24
32
|
# Pane navigation without prefix
|
|
25
33
|
bind -n M-Left select-pane -L
|
|
26
34
|
bind -n M-Right select-pane -R
|
|
27
35
|
bind -n M-Up select-pane -U
|
|
28
36
|
bind -n M-Down select-pane -D
|
|
29
37
|
|
|
30
|
-
# Status bar
|
|
31
|
-
set -g status-style "bg=#
|
|
32
|
-
set -g status-left " #S "
|
|
33
|
-
set -g status-
|
|
38
|
+
# Status bar — session name only, nothing else
|
|
39
|
+
set -g status-style "bg=#da7756,fg=#ffffff"
|
|
40
|
+
set -g status-left "#[bold] #S "
|
|
41
|
+
set -g status-left-length 30
|
|
42
|
+
set -g window-status-format ""
|
|
43
|
+
set -g window-status-current-format ""
|
|
44
|
+
set -g status-right ""
|
|
45
|
+
set -g status-right-length 0
|
|
46
|
+
|
|
47
|
+
# Disable auto-renaming
|
|
48
|
+
set -g allow-rename off
|
|
49
|
+
set -g automatic-rename off
|
|
34
50
|
|
|
35
51
|
# Start windows and panes at 1
|
|
36
52
|
set -g base-index 1
|
package/package.json
CHANGED