-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/add tmux and vscode #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
dbb91fb
26e76c1
4745a20
abb12b4
a40bb32
575e9cb
5ca66d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| set -g @byobu-enable "off" | ||
|
|
||
| # Use Ctrl+A instead of Ctrl+B | ||
| set -g prefix C-a | ||
| unbind C-b | ||
| bind C-a send-prefix | ||
|
|
||
| # Mouse support | ||
| set -g mouse on | ||
|
|
||
| # Reload config | ||
| bind r source-file ~/.tmux.conf \; display-message "Config reloaded!" | ||
|
|
||
| # Plugin manager setup | ||
|
|
||
| set -g @plugin 'tmux-plugins/tpm' | ||
| set -g @plugin 'tmux-plugins/tmux-sensible' | ||
| set -g @plugin 'tmux-plugins/tmux-resurrect' | ||
| set -g @plugin 'tmux-plugins/tmux-continuum' | ||
| set -g @plugin 'tmux-plugins/tmux-prefix-highlight' | ||
| set -g @plugin 'tmux-plugins/tmux-yank' | ||
|
|
||
| run '~/.tmux/plugins/tpm/tpm' | ||
aydevosotros marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # Status bar customization | ||
| set -g status on | ||
| set -g status-interval 5 | ||
|
|
||
| set -g status-bg colour235 | ||
| set -g status-fg colour250 | ||
|
|
||
| set-option -g status-left-length 40 | ||
| set-option -g status-right-length 120 | ||
| set -g status-left ' #[fg=colour250]#S #[fg=colour241]' | ||
| set-option -g status-right "#[fg=colour208]🖥️ #(top -bn1 | grep 'Cpu(s)' | awk '{print $2}' | cut -d'%' -f1)% #[fg=colour241]| #[fg=colour33]🧠 #(free | grep '^Mem' | awk '{printf \"%.1f%%\", $3/$2 * 100.0}') #[fg=colour241]| #[fg=colour244]%Y-%m-%d %H:%M #[fg=colour241]| #[fg=green]#H" | ||
aydevosotros marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # Dim, simple style for inactive windows | ||
| set -g window-status-format " #[fg=colour244]#I:#W " | ||
|
|
||
| # Strong highlight for current window | ||
| set -g window-status-current-format " #[bg=colour34,fg=colour0,bold]#I:#W #[default]" | ||
|
|
||
| # Start counting at 1 (nicer UX) | ||
| set -g base-index 1 | ||
| setw -g pane-base-index 1 | ||
| set -g renumber-windows on | ||
|
|
||
| # Bigger scrollback | ||
| set -g history-limit 50000 | ||
|
|
||
| # tmux-continuum: auto-save + auto-restore | ||
| set -g @continuum-restore 'on' | ||
| set -g @continuum-save-interval '15' # minutes | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -0,0 +1,112 @@ | ||||
| { | ||||
| // ============================ | ||||
| // ==== FILES & AUTO-SAVE ===== | ||||
| // ============================ | ||||
|
|
||||
| // Automatically save files after a short delay | ||||
| "files.autoSave": "afterDelay", | ||||
| // Delay before auto-saving (in milliseconds) | ||||
| "files.autoSaveDelay": 1000, | ||||
| // Remove trailing spaces on save | ||||
| "files.trimTrailingWhitespace": true, | ||||
| // Ensure files always end with a newline | ||||
| "files.insertFinalNewline": true, | ||||
|
|
||||
|
|
||||
| // ============================ | ||||
| // ======== APPEARANCE ======== | ||||
| // ============================ | ||||
|
|
||||
| // Default dark theme (lightweight and clean) | ||||
| "workbench.colorTheme": "Default Dark Modern", | ||||
| // File icons (requires "Material Icon Theme" extension) | ||||
| "workbench.iconTheme": "material-icon-theme", | ||||
|
||||
| "workbench.iconTheme": "material-icon-theme", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot please, add this suggestion in the README
Uh oh!
There was an error while loading. Please reload this page.