[READ-ONLY] Mirror of https://github.com/plttn/dotfiles.
0

Configure Feed

Select the types of activity you want to include in your feed.

Update .claude/CLAUDE.md Update .npmrc Update .config/ghostty/config.ghostty Update .config/git/ignore Update .config/fish/config.fish Update .config/zed/settings.json

Jack Platten (Jul 7, 2026, 7:44 PM -0700) e77cc2f5 35c3202c

+17 -10
+6 -5
dot_claude/CLAUDE.md
··· 1 - ## Tooling 2 - - If about to perform git actions, check to see if this repo is a [jj] repo. If so, 3 - use jj and never use any git commands directly 1 + ## Version Control 4 2 3 + I may use Jujutsu (jj) instead of or alongside Git. 5 4 6 - 7 - [jj]: https://www.jj-vcs.dev/latest/ 5 + - Before running any version control command, check whether a `.jj` directory exists in the repo root. 6 + - If `.jj` is present, NEVER run `git` commands directly (no `git add`, `git commit`, `git checkout`, `git branch`, `git merge`, `git rebase`, etc.) — even though `.jj` repos often have a colocated `.git` directory, using git commands directly can create conflicting state between jj's and git's tracking. 7 + - Instead, use the equivalent `jj` commands (e.g. `jj commit`, `jj new`, `jj git push`, `jj bookmark`, etc.). 8 + - If you're unsure whether a jj command exists for what you need, ask before falling back to git.
+1 -1
dot_npmrc
··· 4 4 ## @lavamoat/allow-scripts 5 5 ignore-scripts=true 6 6 # Avoid installing packages published in last 2 days 7 - min-release-age=3 7 + #min-release-age=3 8 8 ## Don't install packages from git urls, which can 9 9 ## be used to bypass the above two settings 10 10 allow-git=none
+2 -2
private_dot_config/ghostty/config.ghostty
··· 16 16 17 17 mouse-hide-while-typing = true 18 18 19 - background-opacity = .8 20 - background-blur = macos-glass-regular 19 + #background-opacity = .8 20 + #background-blur = macos-glass-regular 21 21 # background-blur-radius = 20 22 22 #keybind = alt+left=unbind 23 23 #keybind = alt+right=unbind
+2 -1
private_dot_config/git/ignore
··· 37 37 # https://mise.jdx.dev/configuration.html#tool-versions 38 38 #.tool-versions 39 39 40 - .vscode/settings.json 40 + .vscode/settings.json 41 + **/.claude/settings.local.json
-1
private_dot_config/private_fish/config.fish
··· 30 30 # Added by LM Studio CLI (lms) 31 31 set -gx PATH $PATH /Users/jack/.lmstudio/bin 32 32 # End of LM Studio CLI section 33 - _zoxide_uninstall
+6
private_dot_config/zed/private_settings.json
··· 24 24 "enabled": true, 25 25 }, 26 26 "agent_servers": { 27 + "claude-acp": { 28 + "default_config_options": { 29 + "mode": "plan" 30 + }, 31 + "type": "registry" 32 + }, 27 33 "github-copilot-cli": { 28 34 "type": "registry", 29 35 },