This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "edit_predictions": { | |
| "mode": "subtle" | |
| }, | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false | |
| }, | |
| "theme": "Min Dark (Solid)", | |
| "theme_overrides": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "window.commandCenter": false, | |
| "window.title": " ", | |
| "workbench.activityBar.location": "hidden", | |
| "workbench.statusBar.visible": false, | |
| "workbench.layoutControl.enabled": false, | |
| "workbench.startupEditor": "none", | |
| "workbench.secondarySideBar.defaultVisibility": "hidden", | |
| "workbench.editor.editorActionsLocation": "hidden", | |
| "workbench.editor.showTabs": "none", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| format = """ | |
| $directory\ | |
| $character | |
| """ | |
| [directory] | |
| style = "white" | |
| truncation_length = 5 | |
| [character] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # If not running interactively, don't do anything | |
| [[ $- != *i* ]] && return | |
| # Shell Prompt | |
| # PS1='[\u@\h \W]\$ ' | |
| PS1='\W \$ ' | |
| # Shortcuts | |
| alias n='nvim' | |
| alias ga='git add' | |
| alias gc='git commit' | |
| alias gp='git push' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # set-option -g default-shell /usr/local/bin/fish | |
| set -gu pane-active-border-style | |
| set -g pane-border-style fg=default | |
| set -g pane-border-style fg=colour238 | |
| set -g pane-active-border-style fg=colour238 | |
| set -g mouse on | |
| set -g history-limit 10000 |