Skip to content

Commit 6b67abe

Browse files
saving current configs
1 parent 377cab3 commit 6b67abe

File tree

3 files changed

+67
-19
lines changed

3 files changed

+67
-19
lines changed

env/bill/settings.json

Lines changed: 39 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"go.goroot": "/usr/local/go",
33
"go.gopath": "/Users/bill/code/go",
4-
"go.enableCodeLens": {
5-
"references": false,
6-
"runtest": false
7-
},
84
"go.addTags": {},
95
"go.alternateTools": {
106
},
@@ -15,15 +11,16 @@
1511
"editor.formatOnSave": true,
1612
"editor.codeActionsOnSave": {
1713
"source.organizeImports": true
18-
}
14+
},
15+
"editor.codeLens": false
1916
},
2017
"gopls": {
2118
"staticcheck": true,
2219
"usePlaceholders": true, // add parameter placeholders when completing a function
2320
"completeUnimported": true, // autocomplete unimported packages
2421
"deepCompletion": true, // enable deep completion
2522
"codelenses": {
26-
"gc_details": true,
23+
//"gc_details": true,
2724
}
2825
},
2926
"go.lintFlags": [
@@ -38,7 +35,6 @@
3835
"editor.trimAutoWhitespace": true,
3936
"editor.minimap.enabled": false,
4037
"editor.defaultFormatter": null,
41-
"editor.bracketPairColorization.enabled": true,
4238
"editor.wordWrap": "off",
4339
"editor.guides.indentation": false,
4440
"editor.renderWhitespace": "none",
@@ -80,19 +76,51 @@
8076

8177
"extensions.ignoreRecommendations": true,
8278
"liveshare.featureSet": "insiders",
83-
"C_Cpp.updateChannel": "Insiders",
8479
"go.coverOnTestPackage": false,
8580
"liveshare.anonymousGuestApproval": "accept",
8681
"editor.folding": false,
8782
"explorer.compactFolders": false,
88-
"files.associations": {
89-
"*.go2": "go"
90-
},
9183
"diffEditor.ignoreTrimWhitespace": false,
9284
"terminal.integrated.tabs.enabled": true,
9385
"testing.gutterEnabled": false,
9486
"security.workspace.trust.untrustedFiles": "open",
9587
"window.newWindowDimensions": "maximized",
9688
"editor.detectIndentation": false,
89+
90+
"[rust]": {
91+
"editor.defaultFormatter": "rust-lang.rust-analyzer",
92+
"editor.formatOnSave": true
93+
},
94+
95+
"rust-analyzer.highlightRelated.breakPoints.enable": false,
96+
"rust-analyzer.highlightRelated.exitPoints.enable": false,
97+
"rust-analyzer.highlightRelated.references.enable": false,
98+
"rust-analyzer.highlightRelated.yieldPoints.enable": false,
99+
"rust-analyzer.hover.actions.debug.enable": false,
100+
"rust-analyzer.hover.actions.enable": false,
101+
"rust-analyzer.hover.actions.gotoTypeDef.enable": false,
102+
"rust-analyzer.hover.actions.implementations.enable": false,
103+
"rust-analyzer.hover.actions.run.enable": false,
104+
"rust-analyzer.hover.links.enable": false,
105+
"rust-analyzer.imports.group.enable": false,
106+
"rust-analyzer.inlayHints.chainingHints.enable": false,
107+
"rust-analyzer.inlayHints.closingBraceHints.enable": false,
108+
"rust-analyzer.inlayHints.parameterHints.enable": false,
109+
"rust-analyzer.inlayHints.renderColons": false,
110+
"rust-analyzer.inlayHints.typeHints.enable": false,
111+
"rust-analyzer.joinLines.joinAssignments": false,
112+
"rust-analyzer.joinLines.joinElseIf": false,
113+
"rust-analyzer.joinLines.removeTrailingComma": false,
114+
"rust-analyzer.joinLines.unwrapTrivialBlock": false,
115+
"rust-analyzer.lens.debug.enable": false,
116+
"rust-analyzer.lens.enable": false,
117+
"rust-analyzer.lens.forceCustomCommands": false,
118+
"rust-analyzer.lens.implementations.enable": false,
119+
"rust-analyzer.lens.run.enable": false,
120+
"rust-analyzer.semanticHighlighting.doc.comment.inject.enable": false,
121+
"rust-analyzer.semanticHighlighting.operator.enable": false,
122+
"rust-analyzer.semanticHighlighting.strings.enable": false,
123+
"editor.inlineSuggest.enabled": true,
124+
"explorer.confirmDragAndDrop": false,
97125
"window.zoomLevel": 1,
98126
}

env/bill/sshconfig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
Host *
22
AddKeysToAgent yes
33
UseKeychain yes
4-
IdentityFile ~/.ssh/id_ed25519
4+
IdentityFile ~/.ssh/id_ed25519
5+
6+
# ssh-add --apple-use-keychain ~/.ssh/id_ed25519

env/bill/zshrc

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,44 @@
1+
# Path to your oh-my-zsh installation.
12
export ZSH="$HOME/.oh-my-zsh"
23

3-
ZSH_THEME="amuse"
4-
4+
# Increase the number of open file limits.
55
ulimit -n 200000
66

7+
# Go Stuff
78
export GOPATH=$HOME/code/go
89
export PATH=$PATH:$GOPATH/bin
910

11+
# Quick Stuff
1012
alias gitlog="git log --graph --pretty=format:'%Cred%h%Creset - %Cblue%an%Creset %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"
13+
1114
alias cdgot="cd $GOPATH/src/github.com/ardanlabs/gotraining"
1215
alias cdser="cd $GOPATH/src/github.com/ardanlabs/service"
16+
alias cdblk="cd $GOPATH/src/github.com/ardanlabs/blockchain"
17+
alias cdsmart="cd $GOPATH/src/github.com/ardanlabs/smartcontract"
18+
alias cdtour="cd $GOPATH/src/github.com/ardanlabs/gotour"
19+
alias cdweb="cd $GOPATH/src/github.com/ardanlabs/web"
20+
1321
alias cdcon="cd $GOPATH/src/github.com/ardanlabs/conf"
1422
alias cdgra="cd $GOPATH/src/github.com/ardanlabs/graphql"
1523
alias cddar="cd $GOPATH/src/github.com/ardanlabs/darwin"
16-
alias cdblk="cd $GOPATH/src/github.com/ardanlabs/blockchain"
17-
alias cdsmart="cd $GOPATH/src/github.com/ardanlabs/smartcontract"
18-
alias cdliar="cd $GOPATH/src/github.com/ardanlabs/liarsdice"
1924
alias cdeth="cd $GOPATH/src/github.com/ardanlabs/ethereum"
25+
26+
alias cdliar="cd $GOPATH/src/github.com/ardanlabs/liarsdice"
2027
alias cdbets="cd $GOPATH/src/github.com/ardanlabs/bets"
28+
2129
alias cdtp="cd $GOPATH/src/gitlab.com/totalprocessing/crm-rewrite-api"
30+
alias cdnetmux="cd $GOPATH/src/github.com/ardanlabs/netmux"
31+
2232
alias python=/opt/homebrew/bin/python3
2333

24-
plugins=(git)
34+
# The next line updates PATH for the Google Cloud SDK.
35+
if [ -f '/Users/bill/code/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/bill/code/google-cloud-sdk/path.zsh.inc'; fi
36+
37+
# The next line enables shell command completion for gcloud.
38+
if [ -f '/Users/bill/code/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/bill/code/google-cloud-sdk/completion.zsh.inc'; fi
2539

26-
source $ZSH/oh-my-zsh.sh
40+
# Set name of the theme to load --- if set to "random", it will
41+
# load a random theme each time oh-my-zsh is loaded, in which case,
42+
# to know which specific one was loaded, run: echo $RANDOM_THEME
43+
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
44+
ZSH_THEME="amuse"

0 commit comments

Comments
 (0)