mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-06 01:14:48 -06:00
- Add claude-settings.json as source file in chezmoi repo - Create symlink template for .claude/settings.json - Update .chezmoiignore to prevent recursion - Update TODO.md to track Claude configuration progress
40 lines
507 B
Plaintext
40 lines
507 B
Plaintext
hooks
|
|
tool-versions
|
|
claude-settings.json
|
|
|
|
{{/* WSL Only Files */}}
|
|
{{ if (not .wsl) }}
|
|
|
|
setup-wsl-gpg.sh
|
|
.gnupg/**
|
|
|
|
{{ end }}
|
|
|
|
{{/* Linux/Unix Only Files */}}
|
|
{{ if (not (eq .chezmoi.os "linux")) }}
|
|
|
|
# Shell configs (Linux-only)
|
|
.scripts
|
|
.bashrc
|
|
.profile
|
|
.bash_aliases
|
|
key.txt
|
|
.tmux.conf
|
|
|
|
# Linux-only config directories
|
|
.config/kitty
|
|
.config/fish
|
|
.config/Code
|
|
.config/Cursor
|
|
.config/lazygit
|
|
|
|
{{ end }}
|
|
|
|
{{/* Windows Only Files */}}
|
|
{{ if (not (eq .chezmoi.os "windows")) }}
|
|
|
|
Documents/
|
|
AppData/
|
|
|
|
{{ end }}
|