Skip to content

Commit e2b741a

Browse files
feat(bump): bump configs (#65)
* feat(brew): add steam * feat(brew): add electric tools * feat(vscode): bump vscode config * chore(terraform): update .terraformrc * feat(zsh): add git branch clear function * style: lint Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 96e596e commit e2b741a

File tree

5 files changed

+40
-2
lines changed

5 files changed

+40
-2
lines changed

config/terraform/.terraformrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
provider_installation {
22

33
dev_overrides {
4-
"github.com/shiron-dev/terraform-provider-gitform" = "/Users/shiron/go/bin"
4+
"shiron-dev/gitform" = "/Users/shiron/go/bin"
55
}
66

77
# For all other providers, install them directly from their origin provider

config/vscode/Application Support/keybindings.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,30 @@
103103
"key": "cmd+p",
104104
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
105105
"when": "inFilesPicker && inQuickOpen"
106+
},
107+
{
108+
"key": "alt+backspace",
109+
"command": "deleteWordLeft",
110+
"when": "textInputFocus && !editorReadonly"
111+
},
112+
{
113+
"key": "alt+backspace",
114+
"command": "-deleteWordLeft",
115+
"when": "textInputFocus && !editorReadonly"
116+
},
117+
{
118+
"key": "cmd+backspace",
119+
"command": "editor.action.deleteLines",
120+
"when": "textInputFocus && !editorReadonly"
121+
},
122+
{
123+
"key": "shift+cmd+k",
124+
"command": "-editor.action.deleteLines",
125+
"when": "textInputFocus && !editorReadonly"
126+
},
127+
{
128+
"key": "cmd+backspace",
129+
"command": "-deleteAllLeft",
130+
"when": "textInputFocus && !editorReadonly"
106131
}
107132
]

config/vscode/Application Support/settings.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,13 @@
164164
"match": ".*\\.(yml|yaml)$",
165165
"cmd": "yamlfmt ${file}",
166166
"autoShowOutputPanel": "error"
167+
},
168+
{
169+
"match": ".*\\.proto$",
170+
"cmd": "buf format -w ${file}",
171+
"autoShowOutputPanel": "error"
167172
}
168173
]
169-
}
174+
},
175+
"github.copilot.nextEditSuggestions.enabled": true
170176
}

config/zsh/.config/functions.zsh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ alias rm='moveToTrash'
2626

2727
function gi() { curl -sLw "\n" https://www.toptal.com/developers/gitignore/api/$@; }
2828

29+
function gitbc() { git checkout -q main && git for-each-ref refs/heads/ "--format=%(refname:short)" | while read branch; do mergeBase=$(git merge-base main $branch) && [[ $(git cherry main $(git commit-tree $(git rev-parse "$branch^{tree}") -p $mergeBase -m _)) == "-"* ]] && git branch -D $branch; done; }
30+
2931
alias gc="ghq get"
3032

3133
function _ghq-fzf() {

data/brew/Brewfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ brew "unbound"
2020
# Fonts
2121
cask "font-roboto-mono-nerd-font"
2222

23+
# Toys
24+
cask "steam"
25+
2326
# Tools
2427

2528
## Core Tools
@@ -64,6 +67,8 @@ cask "aivis-speech"
6467
cask "audacity"
6568
cask "gimp"
6669
cask "inkscape"
70+
cask "kicad"
71+
cask "ltspice"
6772
cask "master-pdf-editor"
6873
cask "obs"
6974
cask "vb-cable"

0 commit comments

Comments
 (0)