mirror of
https://github.com/tylernguyen/dotfiles.git
synced 2025-02-05 01:03:15 -06:00
31 lines
532 B
Cheetah
31 lines
532 B
Cheetah
|
{{ if eq .chezmoi.os "darwin" }}
|
||
|
# Folder view configuration files
|
||
|
.DS_Store
|
||
|
|
||
|
# Thumbnail cache files
|
||
|
._*
|
||
|
|
||
|
# Files that might appear on external disks
|
||
|
.Spotlight-V100
|
||
|
.Trashes
|
||
|
{{ end }}
|
||
|
|
||
|
{{ if eq .chezmoi.os "linux" }}
|
||
|
# KDE directory preferences
|
||
|
.directory
|
||
|
|
||
|
# Linux trash folder which might appear on any partition or disk
|
||
|
.Trash-*
|
||
|
{{ end }}
|
||
|
|
||
|
{{ if eq .chezmoi.os "windows" }}
|
||
|
# Windows thumbnail cache files
|
||
|
Thumbs.db
|
||
|
Thumbs.db:encryptable
|
||
|
ehthumbs.db
|
||
|
ehthumbs_vista.db
|
||
|
|
||
|
# Folder view configuration files
|
||
|
[Dd]esktop.ini
|
||
|
{{ end }}
|