Skip to content

Commit 27278e1

Browse files
committed
feat: changes
1 parent ab9731c commit 27278e1

File tree

7 files changed

+29
-26
lines changed

7 files changed

+29
-26
lines changed

editors/claude-code/CLAUDE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
- **Language:** Use only English for code, including comments, documentation, examples, commits, configurations, errors, and tests.
22
- **Style**: Prefer self-documenting code over comments.
3+
- **Comments**: DON'T use comments to explain code.
34
- **Inclusive Terms:** Use allowlist/blocklist instead of whitelist/blacklist, primary/replica instead of master/slave, and so on.
45
- **Tools**: Use `rg` instead of `grep`, `fd` instead of `find`, and if needed, use `tree` to understand directory structure.
6+
- **Implementations**: On non-test code, using mocks are FORBIDDEN. Create the real implementation like PostgresUserRepository.

git/.gitconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
ui = true
1818

1919
[core]
20-
excludesfile = ~/.gitignore_global
21-
attributesfile = ~/.gitattributes
20+
excludesfile = /Users/rafa.gomez/.gitignore_global
21+
attributesfile = /Users/rafa.gomez/.gitattributes
2222
editor = vim
2323
autocrlf = input
2424
trustctime = false

nix/_homebrew.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@
99
"cliclick"
1010
"codex"
1111
"gemini-cli"
12+
"sst/tap/opencode"
1213
"switchaudio-osx"
1314
];
1415
casks = [
1516
"adobe-creative-cloud"
1617
"arc"
1718
"betterdisplay"
19+
"bettermouse"
1820
"bitwarden"
1921
"claude"
2022
"cloudflare-warp"
@@ -35,11 +37,9 @@
3537
"jetbrains-toolbox"
3638
"karabiner-elements"
3739
"meld-studio"
38-
"microsoft-edge"
3940
"notion"
4041
"obs"
4142
"orbstack"
42-
"orion"
4343
"raycast"
4444
"shottr"
4545
"slack"

nix/_packages.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ with pkgs; [
3636
tmux
3737
tree
3838
unrar
39+
uv
3940
watch
4041
wget
4142
yarn

nix/flake.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"globalShortcut": "",
3-
"preferences": {
4-
"menuBarEnabled": false
5-
}
6-
}
2+
"globalShortcut": "",
3+
"preferences": {
4+
"menuBarEnabled": false
5+
}
6+
}

shell/aliases.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ alias c.='(cursor $PWD &>/dev/null &)'
3636
alias o.='open .'
3737

3838
alias cc="env -u BW_SESSION claude --append-system-prompt 'responde siempre en castellano'"
39-
alias ccyolo="env -u BW_SESSION claude --dangerously-skip-permissions"
39+
alias ccyolo="env -u BW_SESSION claude --dangerously-skip-permissions --append-system-prompt 'responde siempre en castellano'"
4040

4141
# Zsh performance
4242
alias zsh-rebuild-cache='rm -f ~/.zcompdump* && zcompile ~/.dotfiles/shell/zsh/.zshrc && exec zsh'

0 commit comments

Comments
 (0)