Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/terraform/.terraformrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
provider_installation {

dev_overrides {
"github.com/shiron-dev/terraform-provider-gitform" = "/Users/shiron/go/bin"
"shiron-dev/gitform" = "/Users/shiron/go/bin"
}

# For all other providers, install them directly from their origin provider
Expand Down
25 changes: 25 additions & 0 deletions config/vscode/Application Support/keybindings.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,30 @@
"key": "cmd+p",
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "alt+backspace",
"command": "deleteWordLeft",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "alt+backspace",
"command": "-deleteWordLeft",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "cmd+backspace",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+cmd+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "cmd+backspace",
"command": "-deleteAllLeft",
"when": "textInputFocus && !editorReadonly"
}
]
8 changes: 7 additions & 1 deletion config/vscode/Application Support/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,13 @@
"match": ".*\\.(yml|yaml)$",
"cmd": "yamlfmt ${file}",
"autoShowOutputPanel": "error"
},
{
"match": ".*\\.proto$",
"cmd": "buf format -w ${file}",
"autoShowOutputPanel": "error"
}
]
}
},
"github.copilot.nextEditSuggestions.enabled": true
}
2 changes: 2 additions & 0 deletions config/zsh/.config/functions.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ alias rm='moveToTrash'

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

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; }

alias gc="ghq get"

function _ghq-fzf() {
Expand Down
5 changes: 5 additions & 0 deletions data/brew/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ brew "unbound"
# Fonts
cask "font-roboto-mono-nerd-font"

# Toys
cask "steam"

# Tools

## Core Tools
Expand Down Expand Up @@ -64,6 +67,8 @@ cask "aivis-speech"
cask "audacity"
cask "gimp"
cask "inkscape"
cask "kicad"
cask "ltspice"
cask "master-pdf-editor"
cask "obs"
cask "vb-cable"
Expand Down
Loading