Compare commits

...

5 Commits

3 changed files with 13 additions and 4 deletions

View File

@@ -48,7 +48,6 @@ ruby_install = true
"go:github.com/rakyll/hey" = "latest"
"go:google.golang.org/grpc/cmd/protoc-gen-go-grpc" = "latest"
"go:google.golang.org/protobuf/cmd/protoc-gen-go" = "latest"
"npm:@anthropic-ai/claude-code" = "latest"
"npm:@github/copilot-language-server" = "latest"
"npm:@mermaid-js/mermaid-cli" = "latest"
"npm:@modelcontextprotocol/server-memory" = "latest"
@@ -78,7 +77,6 @@ ruby_install = true
"npm:vscode-json-languageserver" = "latest"
"npm:yaml-language-server" = "latest"
"npm:yarn" = "latest"
"pipx:ansible" = { version = "latest", uvx_args = "--with-executables-from ansible-core" }
"pipx:ansible-lint" = "latest"
"pipx:dmgbuild" = "latest"
"pipx:fonttools" = "latest"
@@ -96,6 +94,7 @@ bat-extras = "latest"
buf = "latest"
bun = "latest"
cargo-binstall = "latest"
claude-code = "latest"
crane = "latest"
ctop = "latest"
difftastic = "latest"
@@ -163,3 +162,9 @@ watchexec = "latest"
yj = "latest"
yq = "latest"
zoxide = "latest"
# Install ansible with passlib and bcrypt<4.1, as passlib is not compatible with
# bcrypt 4.1 or later.
[tools."pipx:ansible"]
version = "latest"
uvx_args = "--with-executables-from=ansible-core --with=passlib --with='bcrypt<4.1'"

View File

@@ -87,6 +87,6 @@
trustExitCode = true
[gitbutler]
aiModelProvider = anthropic
aiAnthropicKeyOption = bringYourOwn
aiAnthropicModelName = claude-3-7-sonnet-latest
aiAnthropicKeyOption = butlerAPI
signCommits = true
aiOpenAIKeyOption = butlerAPI

View File

@@ -8,3 +8,7 @@ if command-exists cursor-agent; then
setup-completions cursor-agent "$(command-path cursor-agent)" \
cursor-agent shell-integration zsh
fi
if command-exists cursor; then
export EDITOR="cursor -w"
fi