-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.chezmoiignore.tmpl
More file actions
40 lines (34 loc) · 1.21 KB
/
Copy path.chezmoiignore.tmpl
File metadata and controls
40 lines (34 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Repo docs/tooling — never applied to $HOME
README.md
install.sh
lazygit-guide.md
vim-cheatsheet.md
claude-settings.json
# Python bytecode artifacts — never track or deploy
**/__pycache__
**/*.pyc
{{ if eq .profile "container" -}}
# Skip .gitconfig — DevPod overwrites it with credential injection
# Git aliases/settings live in .config/git/config (XDG fallback) instead
.gitconfig
{{ end -}}
{{ if not .heavy -}}
# No dev toolchains on this profile — skip the Neovim config tree too
.config/nvim
{{ end -}}
{{ if not .gui -}}
.config/uhk-agent
.config/kitty
.config/xfce4/helpers.rc
{{ end -}}
{{ if not .host -}}
# nvidia-upgrades edits /etc/apt/apt.conf.d to keep unattended-upgrades off the
# NVIDIA driver and the kernel. Pointless in a container (no kernel of its own)
# and unusable on a shared account (no write access to /etc).
.local/bin/nvidia-upgrades
{{ end -}}
{{/* .terminfo is deliberately NOT gated on .gui. Kitty runs locally, but
TERM=xterm-kitty travels over SSH into headless shared/robot/container
boxes, where ncurses needs the entry to initialise TUIs and tput —
without it `tput setaf 1` fails and the colored PS1 never fires.
Do not move it back into the block above. */}}