Skip to content

Commit 190360c

Browse files
committed
what
1 parent 4e83201 commit 190360c

4 files changed

Lines changed: 32 additions & 2 deletions

File tree

.bashrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,6 +773,10 @@ PS1="\n\[$COLOR_YELLOW\]\u\[\$(error_test)\]@\[$COLOR_GREEN\]\w\$(${dvcs_functio
773773
function ding() {
774774
afplay /System/Library/Sounds/Glass.aiff
775775
}
776+
function blorf() {
777+
afplay /System/Library/Sounds/Basso.aiff
778+
}
779+
alias blorb=blorf
776780

777781
# Python development, requires pyenv from homebrew
778782
# Needs to go before GR stuff
@@ -800,7 +804,6 @@ function gr_locked_gpg() {
800804
fi
801805
}
802806

803-
804807
if [ -d "$GR_HOME" ]; then
805808
for file in ${GR_HOME}/engineering/bash/*.sh; do
806809
source "$file"

.pryrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# Setup
33
# =============================================================================
44

5+
puts "#{'✨ Initializing'.green} #{'pry ✨'.cyan}"
6+
57
# Disabe paging in pry, to avoid having to keep hitting j/space on big output
68
# on small screens
79
# On second thought I want this on because printing a huge object is not

code/keybindings.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@
7070
},
7171
/**
7272
* ----------------------------------------------------------------------------
73+
* Unbind bad shortcuts
74+
* ----------------------------------------------------------------------------
75+
*/
76+
{
77+
"key": "command+shift+c",
78+
"command": "-editor.action.insertCursorBelow"
79+
},
80+
/**
81+
* ----------------------------------------------------------------------------
7382
* Vim Helpers
7483
* ----------------------------------------------------------------------------
7584
*/
@@ -156,5 +165,20 @@
156165
"key": "cmd-k l",
157166
"command": "latex-workshop.tab",
158167
"when": "editorTextFocus"
168+
},
169+
{
170+
"key": "shift+cmd+c",
171+
"command": "-workbench.action.terminal.openNativeConsole",
172+
"when": "!terminalFocus"
173+
},
174+
{
175+
"key": "shift+cmd+c",
176+
"command": "-workbench.action.terminal.openNativeConsole",
177+
"when": "!terminalFocus"
178+
},
179+
{
180+
"key": "shift+cmd+c",
181+
"command": "-workbench.action.terminal.openNativeConsole",
182+
"when": "!terminalFocus"
159183
}
160184
]

code/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,6 @@
9898
"workbench.action.openWorkspaceSettings",
9999
"settings.switchToJSON"
100100
]
101-
}
101+
},
102+
"workbench.activityBar.visible": true
102103
}

0 commit comments

Comments
 (0)