.gitignore (1889B)
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/gtk-3.0 30 .config/pulse 31 32 # IME-related (machine-specific, cached data). 33 .config/fcitx 34 .config/fcitx5/conf/cached_layouts 35 .config/ibus 36 .config/mozc 37 38 # Flutter SDK (machine-specific). 39 .config/flutter 40 .config/tool_state 41 .config/settings 42 43 # iTerm. 44 .config/iterm2/AppSupport 45 46 # nvim. 47 .config/nvim/.netrwhist 48 .config/nvim/*.spl 49 .config/nvim/*.sug 50 51 # zsh cached data. 52 .config/zsh/.zcompdump 53 .config/zsh/.zcompdumps/ 54 .config/zsh/.zsh_history 55 .config/zsh/.zsh_sessions/ 56 57 # Badly-behaved apps. 58 .config/sublime-text/Packages/User/Package Control.last-run 59 .config/sublime-text/Packages/User/Package Control.ca-list 60 .config/sublime-text/Packages/User/Package Control.ca-bundle 61 .config/sublime-text/Packages/User/Package Control.system-ca-bundle 62 .config/sublime-text/Packages/User/Package Control.cache/ 63 .config/sublime-text/Packages/User/Package Control.ca-certs/ 64 .config/phetch/ 65 .config/zed/prompts/ 66 67 # Swift package manager. 68 .config/swiftpm 69 70 # Work stuff. 71 .config/chrome_infra/ 72 .config/gbackup/ 73 .config/gcloud/ 74 75 # ======================================== 76 # .local 77 # ======================================== 78 79 # Ignore .local dir other than .local/bin and what's manually checked in. 80 .local/* 81 .local/!bin/ 82 .local/bin/gn