Skip to content

Commit a88c69f

Browse files
committed
Minor tweaks (fix namespace, add yarn to path)
1 parent 5bf470e commit a88c69f

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Code/User/settings.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,11 @@
3939
"workbench.colorTheme": "Monokai Dimmed",
4040
"workbench.editor.enablePreview": false,
4141
"workbench.editor.enablePreviewFromQuickOpen": false,
42-
"workbench.iconTheme": "vscode-icons"
42+
"workbench.iconTheme": "vscode-icons",
43+
"[typescript]": {
44+
"editor.defaultFormatter": "esbenp.prettier-vscode"
45+
},
46+
"[typescriptreact]": {
47+
"editor.defaultFormatter": "esbenp.prettier-vscode"
48+
}
4349
}

bash/.bash_path

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,9 @@ if [ -f "$HOME/.gvm/scripts/gvm" ]; then
2727
. "$HOME/.gvm/scripts/gvm"
2828
fi
2929

30+
if [ -d "$HOME/.yarn/bin" ]; then
31+
PATH="$HOME/.yarn/bin:$PATH"
32+
fi
33+
3034
# kubectl autocompletion
3135
source <(kubectl completion bash)

bash/.bashrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export PS1="\u \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
120120

121121
# Coder Environment Variables
122122
export GOOGLE_PROJECT_ID="coder-dev-1"
123-
export NAMESPACE="coder-greyb-namespace"
123+
export NAMESPACE="coder-bryan-namespace"
124124

125125

126126
if [ -f "$HOME/.bash_path" ]; then

0 commit comments

Comments
 (0)