Skip to content

Commit 7f068e0

Browse files
committed
feat: changes
1 parent 446be26 commit 7f068e0

File tree

9 files changed

+35
-19
lines changed

9 files changed

+35
-19
lines changed

.claude/settings.local.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"allow": [
44
"Bash(find:*)",
55
"Bash(ls:*)",
6-
"Bash(chmod:*)"
6+
"Bash(chmod:*)",
7+
"WebSearch",
8+
"WebFetch(domain:support.google.com)"
79
],
810
"deny": []
911
}

editors/claude-code/CLAUDE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- **Language:** Use only English for code, including comments, documentation, examples, commits, configurations, errors, and tests.
2+
- **Style**: Prefer self-documenting code over comments.
3+
- **Inclusive Terms:** Use allowlist/blocklist instead of whitelist/blacklist, primary/replica instead of master/slave, and so on.
4+
- **Tools**: Use `rg` instead of `grep`, `fd` instead of `find`, and if needed, use `tree` to understand directory structure.

editors/claude-code/settings.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
2-
"statusLine": {
3-
"type": "command",
4-
"command": "npx -y ccusage statusline",
5-
"padding": 0
6-
}
7-
}
2+
"statusLine": {
3+
"type": "command",
4+
"command": "npx -y ccusage statusline",
5+
"padding": 0
6+
},
7+
"model": "opusplan"
8+
}

editors/cursor/keybindings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,9 @@
158158
{
159159
"key": "cmd+i",
160160
"command": "composerMode.agent"
161+
},
162+
{
163+
"key": "cmd+e",
164+
"command": "composerMode.background"
161165
}
162166
]

nix/_home-files.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ in
88
".bashrc".source = symlink "${dotfilesPath}/shell/bash/.bashrc";
99
".claude.json".source = symlink "${dotfilesPath}/modules/private/claude/.claude.json";
1010
".claude/settings.json".source = symlink "${dotfilesPath}/editors/claude-code/settings.json";
11+
".claude/CLAUDE.md".source = symlink "${dotfilesPath}/editors/claude-code/CLAUDE.md";
1112
".config/alacritty/alacritty.toml".source = symlink "${dotfilesPath}/os/mac/alacritty/alacritty.toml";
1213
".config/clojure-lsp".source = symlink "${dotfilesPath}/langs/clojure/clojure-lsp";
1314
".config/clojure/profiles.clj".source = symlink "${dotfilesPath}/langs/clojure/profiles.clj";

nix/_homebrew.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
enable = true;
55
taps = [];
66
brews = [
7+
"bitwarden-cli"
78
"choose-gui"
89
"cliclick"
910
"switchaudio-osx"
@@ -12,6 +13,7 @@
1213
"adobe-creative-cloud"
1314
"arc"
1415
"betterdisplay"
16+
"bitwarden"
1517
"claude"
1618
"cloudflare-warp"
1719
"contexts"
@@ -44,7 +46,6 @@
4446
"visual-studio-code"
4547
"vlc"
4648
"zed"
47-
"zen-browser"
4849
];
4950
masApps = {
5051
# "Bitwarden" = 1352778147;

nix/_packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ with pkgs; [
88
coreutils
99
delta
1010
eza
11+
fd
1112
ffmpeg
1213
findutils
1314
fzf
@@ -27,6 +28,7 @@ with pkgs; [
2728
pipx
2829
python3
2930
python3Packages.pip
31+
ripgrep
3032
rustc
3133
shellcheck
3234
shfmt

nix/flake.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shell/aliases.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ alias rebuild="sudo darwin-rebuild switch --flake /Users/rafa.gomez/.dotfiles/ni
2929

3030
alias copy='pbcopy'
3131
alias dc='dot docker connect'
32-
alias docker-clear='dot docker clear'
32+
alias dcl='dot docker clear'
3333

3434
alias i.='(idea $PWD &>/dev/null &)'
3535
alias c.='(cursor $PWD &>/dev/null &)'
3636
alias o.='open .'
3737

38-
alias cc="claude"
38+
alias cc="claude --append-system-prompt 'responde siempre en castellano'"
39+
alias ccyolo="claude --dangerously-skip-permissions"

0 commit comments

Comments
 (0)