.gitignore (2185B)
1 # Ignore compiled python. 2 *.pyc 3 4 # Ignore GTK 2.0 theme information. 5 .gtk-2.0 6 7 # Ignore gnupg with the exception of checked-in config. 8 .gnupg/ 9 10 # ======================================== 11 # .config 12 # ======================================== 13 14 # Ignore files that contain one or more of the following types of data: 15 # - machine-specific configuration. 16 # - local cached data that belongs in XDG_CACHE_HOME (e.g. last window size). 17 .config/Signal 18 .config/chromium 19 20 # gitk viewer (cached data). 21 .config/git/gitk 22 23 # Symlink to wire up additional git config for the local machine. 24 .config/git/local_config 25 26 # Linux/GTK look and feel (machine-specific). 27 .config/dconf 28 .config/glib-2.0 29 .config/gnome-xdg-terminals.list 30 .config/gtk-3.0 31 .config/pulse 32 .config/xdg-terminals.list 33 34 # IME-related (machine-specific, cached data). 35 .config/fcitx 36 .config/fcitx5/conf/cached_layouts 37 .config/ibus 38 .config/mozc 39 40 # Flutter SDK (machine-specific). 41 .config/flutter 42 .config/tool_state 43 .config/settings 44 45 # iTerm. 46 .config/iterm2/AppSupport 47 48 # nvim. 49 .config/nvim/.netrwhist 50 .config/nvim/*.spl 51 .config/nvim/*.sug 52 53 # zsh cached data. 54 .config/zsh/.zsh_sessions/ 55 56 # jj cached data. 57 .config/jj/repos/ 58 59 # Badly-behaved apps. 60 .config/configstore/update-notifier-@google/ 61 .config/sublime-text/Packages/User/Package Control.last-run 62 .config/sublime-text/Packages/User/Package Control.ca-list 63 .config/sublime-text/Packages/User/Package Control.ca-bundle 64 .config/sublime-text/Packages/User/Package Control.system-ca-bundle 65 .config/sublime-text/Packages/User/Package Control.cache/ 66 .config/sublime-text/Packages/User/Package Control.ca-certs/ 67 .config/phetch/ 68 .config/zed/.tmp* 69 .config/zed/conversations/** 70 .config/zed/embeddings/** 71 .config/zed/prompts/** 72 .config/mozilla/firefox/** 73 74 # Swift package manager. 75 .config/swiftpm 76 77 # Work stuff. 78 .config/.gsd-keyboard.settings-ported 79 .config/chrome-remote-desktop/ 80 .config/chrome_infra/ 81 .config/evolution/ 82 .config/gbackup/ 83 .config/gcloud/ 84 .config/lri-notifications-count-lock 85 86 # ======================================== 87 # .local 88 # ======================================== 89 90 # Ignore .local dir other than .local/bin and what's manually checked in. 91 .local/* 92 .local/!bin/ 93 .local/bin/gn