.gitignore (2258B)
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/.zcompdump 55 .config/zsh/.zcompdumps/ 56 .config/zsh/.zsh_history 57 .config/zsh/.zsh_sessions/ 58 59 # jj cached data. 60 .config/jj/repos/ 61 62 # Badly-behaved apps. 63 .config/configstore/update-notifier-@google/ 64 .config/sublime-text/Packages/User/Package Control.last-run 65 .config/sublime-text/Packages/User/Package Control.ca-list 66 .config/sublime-text/Packages/User/Package Control.ca-bundle 67 .config/sublime-text/Packages/User/Package Control.system-ca-bundle 68 .config/sublime-text/Packages/User/Package Control.cache/ 69 .config/sublime-text/Packages/User/Package Control.ca-certs/ 70 .config/phetch/ 71 .config/zed/.tmp* 72 .config/zed/conversations/** 73 .config/zed/embeddings/** 74 .config/zed/prompts/** 75 .config/mozilla/firefox/** 76 77 # Swift package manager. 78 .config/swiftpm 79 80 # Work stuff. 81 .config/.gsd-keyboard.settings-ported 82 .config/chrome-remote-desktop/ 83 .config/chrome_infra/ 84 .config/evolution/ 85 .config/gbackup/ 86 .config/gcloud/ 87 .config/lri-notifications-count-lock 88 89 # ======================================== 90 # .local 91 # ======================================== 92 93 # Ignore .local dir other than .local/bin and what's manually checked in. 94 .local/* 95 .local/!bin/ 96 .local/bin/gn