mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-05 23:14:46 -06:00
- 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)
38 lines
485 B
Plaintext
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 }} |