@askexenow/exe-os 0.8.60 → 0.8.61
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 +37 -0
- package/dist/bin/cli.js +151 -111
- package/dist/bin/exe-new-employee.js +862 -114
- package/dist/bin/exe-start.sh +133 -0
- package/dist/bin/install.js +182 -20
- package/dist/hooks/response-ingest-worker.js +3 -1
- package/dist/hooks/summary-worker.js +3 -1
- package/dist/lib/session-wrappers.js +107 -0
- package/package.json +3 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Exe OS — Ghostty-compatible tmux defaults
|
|
2
|
+
# Backup of original: ~/.tmux.conf.backup (if existed)
|
|
3
|
+
|
|
4
|
+
# Mouse support
|
|
5
|
+
set -g mouse on
|
|
6
|
+
|
|
7
|
+
# Modern prefix (Ctrl+a instead of Ctrl+b)
|
|
8
|
+
unbind C-b
|
|
9
|
+
set -g prefix C-a
|
|
10
|
+
bind C-a send-prefix
|
|
11
|
+
|
|
12
|
+
# True color support
|
|
13
|
+
set -g default-terminal "tmux-256color"
|
|
14
|
+
set -ga terminal-overrides ",*256col*:Tc"
|
|
15
|
+
|
|
16
|
+
# Scroll history
|
|
17
|
+
set -g history-limit 10000
|
|
18
|
+
|
|
19
|
+
# Vi-style copy mode
|
|
20
|
+
setw -g mode-keys vi
|
|
21
|
+
bind -T copy-mode-vi v send-keys -X begin-selection
|
|
22
|
+
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
23
|
+
|
|
24
|
+
# Pane navigation without prefix
|
|
25
|
+
bind -n M-Left select-pane -L
|
|
26
|
+
bind -n M-Right select-pane -R
|
|
27
|
+
bind -n M-Up select-pane -U
|
|
28
|
+
bind -n M-Down select-pane -D
|
|
29
|
+
|
|
30
|
+
# Status bar
|
|
31
|
+
set -g status-style "bg=#1a1a2e,fg=#F5D76E"
|
|
32
|
+
set -g status-left " #S "
|
|
33
|
+
set -g status-right " %H:%M "
|
|
34
|
+
|
|
35
|
+
# Start windows and panes at 1
|
|
36
|
+
set -g base-index 1
|
|
37
|
+
setw -g pane-base-index 1
|