Files
dotfiles/home/.chezmoiignore
Ryan Walters 625cf3c3ae fix: correct WSL detection and improve platform-specific configuration
- Set WSL detection to false by default for proper conditional evaluation
- Add delta as diff pager for improved git diff output
- Change Windows cd command from nu to powershell.exe with -NoLogo flag
- Refactor .chezmoiignore to use clearer platform-specific sections
- Fix WSL-only files to be properly excluded on non-WSL systems
- Separate Linux/Unix and Windows file exclusions for better clarity
- Remove zsh profile from Cursor settings (migrated to Fish shell)
2025-10-27 20:01:56 -05:00

38 lines
485 B
Plaintext

hooks
tool-versions
{{/* 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 }}