636 lines
		
	
	
	
		
			8.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			636 lines
		
	
	
	
		
			8.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| # ---> Emacs
 | |
| # -*- mode: gitignore; -*-
 | |
| *~
 | |
| \#*\#
 | |
| /.emacs.desktop
 | |
| /.emacs.desktop.lock
 | |
| *.elc
 | |
| auto-save-list
 | |
| tramp
 | |
| .\#*
 | |
| 
 | |
| # Org-mode
 | |
| .org-id-locations
 | |
| *_archive
 | |
| 
 | |
| # flymake-mode
 | |
| *_flymake.*
 | |
| 
 | |
| # eshell files
 | |
| /eshell/history
 | |
| /eshell/lastdir
 | |
| 
 | |
| # elpa packages
 | |
| /elpa/
 | |
| 
 | |
| # reftex files
 | |
| *.rel
 | |
| 
 | |
| # AUCTeX auto folder
 | |
| /auto/
 | |
| 
 | |
| # cask packages
 | |
| .cask/
 | |
| dist/
 | |
| 
 | |
| # Flycheck
 | |
| flycheck_*.el
 | |
| 
 | |
| # server auth directory
 | |
| /server/
 | |
| 
 | |
| # projectiles files
 | |
| .projectile
 | |
| 
 | |
| # directory configuration
 | |
| .dir-locals.el
 | |
| 
 | |
| # network security
 | |
| /network-security.data
 | |
| 
 | |
| 
 | |
| # ---> Gradle
 | |
| .gradle
 | |
| **/build/
 | |
| !src/**/build/
 | |
| 
 | |
| # Ignore Gradle GUI config
 | |
| gradle-app.setting
 | |
| 
 | |
| # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
 | |
| !gradle-wrapper.jar
 | |
| 
 | |
| # Avoid ignore Gradle wrappper properties
 | |
| !gradle-wrapper.properties
 | |
| 
 | |
| # Cache of project
 | |
| .gradletasknamecache
 | |
| 
 | |
| # Eclipse Gradle plugin generated files
 | |
| # Eclipse Core
 | |
| .project
 | |
| # JDT-specific (Eclipse Java Development Tools)
 | |
| .classpath
 | |
| 
 | |
| # ---> Java
 | |
| # Compiled class file
 | |
| *.class
 | |
| 
 | |
| # Log file
 | |
| *.log
 | |
| 
 | |
| # BlueJ files
 | |
| *.ctxt
 | |
| 
 | |
| # Mobile Tools for Java (J2ME)
 | |
| .mtj.tmp/
 | |
| 
 | |
| # Package Files #
 | |
| *.jar
 | |
| *.war
 | |
| *.nar
 | |
| *.ear
 | |
| *.zip
 | |
| *.tar.gz
 | |
| *.rar
 | |
| 
 | |
| # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
 | |
| hs_err_pid*
 | |
| replay_pid*
 | |
| 
 | |
| # ---> JetBrains
 | |
| # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
 | |
| # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
 | |
| 
 | |
| # User-specific stuff
 | |
| .idea/**/workspace.xml
 | |
| .idea/**/tasks.xml
 | |
| .idea/**/usage.statistics.xml
 | |
| .idea/**/dictionaries
 | |
| .idea/**/shelf
 | |
| 
 | |
| # AWS User-specific
 | |
| .idea/**/aws.xml
 | |
| 
 | |
| # Generated files
 | |
| .idea/**/contentModel.xml
 | |
| 
 | |
| # Sensitive or high-churn files
 | |
| .idea/**/dataSources/
 | |
| .idea/**/dataSources.ids
 | |
| .idea/**/dataSources.local.xml
 | |
| .idea/**/sqlDataSources.xml
 | |
| .idea/**/dynamic.xml
 | |
| .idea/**/uiDesigner.xml
 | |
| .idea/**/dbnavigator.xml
 | |
| 
 | |
| # Gradle
 | |
| .idea/**/gradle.xml
 | |
| .idea/**/libraries
 | |
| 
 | |
| # Gradle and Maven with auto-import
 | |
| # When using Gradle or Maven with auto-import, you should exclude module files,
 | |
| # since they will be recreated, and may cause churn.  Uncomment if using
 | |
| # auto-import.
 | |
| # .idea/artifacts
 | |
| # .idea/compiler.xml
 | |
| # .idea/jarRepositories.xml
 | |
| # .idea/modules.xml
 | |
| # .idea/*.iml
 | |
| # .idea/modules
 | |
| # *.iml
 | |
| # *.ipr
 | |
| 
 | |
| # CMake
 | |
| cmake-build-*/
 | |
| 
 | |
| # Mongo Explorer plugin
 | |
| .idea/**/mongoSettings.xml
 | |
| 
 | |
| # File-based project format
 | |
| *.iws
 | |
| 
 | |
| # IntelliJ
 | |
| out/
 | |
| 
 | |
| # mpeltonen/sbt-idea plugin
 | |
| .idea_modules/
 | |
| 
 | |
| # JIRA plugin
 | |
| atlassian-ide-plugin.xml
 | |
| 
 | |
| # Cursive Clojure plugin
 | |
| .idea/replstate.xml
 | |
| 
 | |
| # SonarLint plugin
 | |
| .idea/sonarlint/
 | |
| 
 | |
| # Crashlytics plugin (for Android Studio and IntelliJ)
 | |
| com_crashlytics_export_strings.xml
 | |
| crashlytics.properties
 | |
| crashlytics-build.properties
 | |
| fabric.properties
 | |
| 
 | |
| # Editor-based Rest Client
 | |
| .idea/httpRequests
 | |
| 
 | |
| # Android studio 3.1+ serialized cache file
 | |
| .idea/caches/build_file_checksums.ser
 | |
| 
 | |
| # ---> Kotlin
 | |
| # Compiled class file
 | |
| *.class
 | |
| 
 | |
| # Log file
 | |
| *.log
 | |
| 
 | |
| # BlueJ files
 | |
| *.ctxt
 | |
| 
 | |
| # Mobile Tools for Java (J2ME)
 | |
| .mtj.tmp/
 | |
| 
 | |
| # Package Files #
 | |
| *.jar
 | |
| *.war
 | |
| *.nar
 | |
| *.ear
 | |
| *.zip
 | |
| *.tar.gz
 | |
| *.rar
 | |
| 
 | |
| # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
 | |
| hs_err_pid*
 | |
| replay_pid*
 | |
| 
 | |
| # ---> Linux
 | |
| *~
 | |
| 
 | |
| # temporary files which can be created if a process still has a handle open of a deleted file
 | |
| .fuse_hidden*
 | |
| 
 | |
| # KDE directory preferences
 | |
| .directory
 | |
| 
 | |
| # Linux trash folder which might appear on any partition or disk
 | |
| .Trash-*
 | |
| 
 | |
| # .nfs files are created when an open file is removed but is still being accessed
 | |
| .nfs*
 | |
| 
 | |
| # ---> Maven
 | |
| target/
 | |
| pom.xml.tag
 | |
| pom.xml.releaseBackup
 | |
| pom.xml.versionsBackup
 | |
| pom.xml.next
 | |
| release.properties
 | |
| dependency-reduced-pom.xml
 | |
| buildNumber.properties
 | |
| .mvn/timing.properties
 | |
| # https://github.com/takari/maven-wrapper#usage-without-binary-jar
 | |
| .mvn/wrapper/maven-wrapper.jar
 | |
| 
 | |
| # Eclipse m2e generated files
 | |
| # Eclipse Core
 | |
| .project
 | |
| # JDT-specific (Eclipse Java Development Tools)
 | |
| .classpath
 | |
| 
 | |
| # ---> TeX
 | |
| ## Core latex/pdflatex auxiliary files:
 | |
| *.aux
 | |
| *.lof
 | |
| *.log
 | |
| *.lot
 | |
| *.fls
 | |
| *.out
 | |
| *.toc
 | |
| *.fmt
 | |
| *.fot
 | |
| *.cb
 | |
| *.cb2
 | |
| .*.lb
 | |
| 
 | |
| ## Intermediate documents:
 | |
| *.dvi
 | |
| *.xdv
 | |
| *-converted-to.*
 | |
| # these rules might exclude image files for figures etc.
 | |
| # *.ps
 | |
| # *.eps
 | |
| # *.pdf
 | |
| 
 | |
| ## Generated if empty string is given at "Please type another file name for output:"
 | |
| .pdf
 | |
| 
 | |
| ## Bibliography auxiliary files (bibtex/biblatex/biber):
 | |
| *.bbl
 | |
| *.bcf
 | |
| *.blg
 | |
| *-blx.aux
 | |
| *-blx.bib
 | |
| *.run.xml
 | |
| 
 | |
| ## Build tool auxiliary files:
 | |
| *.fdb_latexmk
 | |
| *.synctex
 | |
| *.synctex(busy)
 | |
| *.synctex.gz
 | |
| *.synctex.gz(busy)
 | |
| *.pdfsync
 | |
| *.rubbercache
 | |
| rubber.cache
 | |
| 
 | |
| ## Build tool directories for auxiliary files
 | |
| # latexrun
 | |
| latex.out/
 | |
| 
 | |
| ## Auxiliary and intermediate files from other packages:
 | |
| # algorithms
 | |
| *.alg
 | |
| *.loa
 | |
| 
 | |
| # achemso
 | |
| acs-*.bib
 | |
| 
 | |
| # amsthm
 | |
| *.thm
 | |
| 
 | |
| # beamer
 | |
| *.nav
 | |
| *.pre
 | |
| *.snm
 | |
| *.vrb
 | |
| 
 | |
| # changes
 | |
| *.soc
 | |
| 
 | |
| # comment
 | |
| *.cut
 | |
| 
 | |
| # cprotect
 | |
| *.cpt
 | |
| 
 | |
| # elsarticle (documentclass of Elsevier journals)
 | |
| *.spl
 | |
| 
 | |
| # endnotes
 | |
| *.ent
 | |
| 
 | |
| # fixme
 | |
| *.lox
 | |
| 
 | |
| # feynmf/feynmp
 | |
| *.mf
 | |
| *.mp
 | |
| *.t[1-9]
 | |
| *.t[1-9][0-9]
 | |
| *.tfm
 | |
| 
 | |
| #(r)(e)ledmac/(r)(e)ledpar
 | |
| *.end
 | |
| *.?end
 | |
| *.[1-9]
 | |
| *.[1-9][0-9]
 | |
| *.[1-9][0-9][0-9]
 | |
| *.[1-9]R
 | |
| *.[1-9][0-9]R
 | |
| *.[1-9][0-9][0-9]R
 | |
| *.eledsec[1-9]
 | |
| *.eledsec[1-9]R
 | |
| *.eledsec[1-9][0-9]
 | |
| *.eledsec[1-9][0-9]R
 | |
| *.eledsec[1-9][0-9][0-9]
 | |
| *.eledsec[1-9][0-9][0-9]R
 | |
| 
 | |
| # glossaries
 | |
| *.acn
 | |
| *.acr
 | |
| *.glg
 | |
| *.glo
 | |
| *.gls
 | |
| *.glsdefs
 | |
| *.lzo
 | |
| *.lzs
 | |
| *.slg
 | |
| *.slo
 | |
| *.sls
 | |
| 
 | |
| # uncomment this for glossaries-extra (will ignore makeindex's style files!)
 | |
| # *.ist
 | |
| 
 | |
| # gnuplot
 | |
| *.gnuplot
 | |
| *.table
 | |
| 
 | |
| # gnuplottex
 | |
| *-gnuplottex-*
 | |
| 
 | |
| # gregoriotex
 | |
| *.gaux
 | |
| *.glog
 | |
| *.gtex
 | |
| 
 | |
| # htlatex
 | |
| *.4ct
 | |
| *.4tc
 | |
| *.idv
 | |
| *.lg
 | |
| *.trc
 | |
| *.xref
 | |
| 
 | |
| # hypdoc
 | |
| *.hd
 | |
| 
 | |
| # hyperref
 | |
| *.brf
 | |
| 
 | |
| # knitr
 | |
| *-concordance.tex
 | |
| # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
 | |
| # *.tikz
 | |
| *-tikzDictionary
 | |
| 
 | |
| # listings
 | |
| *.lol
 | |
| 
 | |
| # luatexja-ruby
 | |
| *.ltjruby
 | |
| 
 | |
| # makeidx
 | |
| *.idx
 | |
| *.ilg
 | |
| *.ind
 | |
| 
 | |
| # minitoc
 | |
| *.maf
 | |
| *.mlf
 | |
| *.mlt
 | |
| *.mtc[0-9]*
 | |
| *.slf[0-9]*
 | |
| *.slt[0-9]*
 | |
| *.stc[0-9]*
 | |
| 
 | |
| # minted
 | |
| _minted*
 | |
| *.pyg
 | |
| 
 | |
| # morewrites
 | |
| *.mw
 | |
| 
 | |
| # newpax
 | |
| *.newpax
 | |
| 
 | |
| # nomencl
 | |
| *.nlg
 | |
| *.nlo
 | |
| *.nls
 | |
| 
 | |
| # pax
 | |
| *.pax
 | |
| 
 | |
| # pdfpcnotes
 | |
| *.pdfpc
 | |
| 
 | |
| # sagetex
 | |
| *.sagetex.sage
 | |
| *.sagetex.py
 | |
| *.sagetex.scmd
 | |
| 
 | |
| # scrwfile
 | |
| *.wrt
 | |
| 
 | |
| # svg
 | |
| svg-inkscape/
 | |
| 
 | |
| # sympy
 | |
| *.sout
 | |
| *.sympy
 | |
| sympy-plots-for-*.tex/
 | |
| 
 | |
| # pdfcomment
 | |
| *.upa
 | |
| *.upb
 | |
| 
 | |
| # pythontex
 | |
| *.pytxcode
 | |
| pythontex-files-*/
 | |
| 
 | |
| # tcolorbox
 | |
| *.listing
 | |
| 
 | |
| # thmtools
 | |
| *.loe
 | |
| 
 | |
| # TikZ & PGF
 | |
| *.dpth
 | |
| *.md5
 | |
| *.auxlock
 | |
| 
 | |
| # titletoc
 | |
| *.ptc
 | |
| 
 | |
| # todonotes
 | |
| *.tdo
 | |
| 
 | |
| # vhistory
 | |
| *.hst
 | |
| *.ver
 | |
| 
 | |
| # easy-todo
 | |
| *.lod
 | |
| 
 | |
| # xcolor
 | |
| *.xcp
 | |
| 
 | |
| # xmpincl
 | |
| *.xmpi
 | |
| 
 | |
| # xindy
 | |
| *.xdy
 | |
| 
 | |
| # xypic precompiled matrices and outlines
 | |
| *.xyc
 | |
| *.xyd
 | |
| 
 | |
| # endfloat
 | |
| *.ttt
 | |
| *.fff
 | |
| 
 | |
| # Latexian
 | |
| TSWLatexianTemp*
 | |
| 
 | |
| ## Editors:
 | |
| # WinEdt
 | |
| *.bak
 | |
| *.sav
 | |
| 
 | |
| # Texpad
 | |
| .texpadtmp
 | |
| 
 | |
| # LyX
 | |
| *.lyx~
 | |
| 
 | |
| # Kile
 | |
| *.backup
 | |
| 
 | |
| # gummi
 | |
| .*.swp
 | |
| 
 | |
| # KBibTeX
 | |
| *~[0-9]*
 | |
| 
 | |
| # TeXnicCenter
 | |
| *.tps
 | |
| 
 | |
| # auto folder when using emacs and auctex
 | |
| ./auto/*
 | |
| *.el
 | |
| 
 | |
| # expex forward references with \gathertags
 | |
| *-tags.tex
 | |
| 
 | |
| # standalone packages
 | |
| *.sta
 | |
| 
 | |
| # Makeindex log files
 | |
| *.lpz
 | |
| 
 | |
| # xwatermark package
 | |
| *.xwm
 | |
| 
 | |
| # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
 | |
| # option is specified. Footnotes are the stored in a file with suffix Notes.bib.
 | |
| # Uncomment the next line to have this generated file ignored.
 | |
| #*Notes.bib
 | |
| 
 | |
| # ---> Vim
 | |
| # Swap
 | |
| [._]*.s[a-v][a-z]
 | |
| !*.svg  # comment out if you don't need vector files
 | |
| [._]*.sw[a-p]
 | |
| [._]s[a-rt-v][a-z]
 | |
| [._]ss[a-gi-z]
 | |
| [._]sw[a-p]
 | |
| 
 | |
| # Session
 | |
| Session.vim
 | |
| Sessionx.vim
 | |
| 
 | |
| # Temporary
 | |
| .netrwhist
 | |
| *~
 | |
| # Auto-generated tag files
 | |
| tags
 | |
| # Persistent undo
 | |
| [._]*.un~
 | |
| 
 | |
| # ---> VisualStudioCode
 | |
| .vscode/*
 | |
| !.vscode/settings.json
 | |
| !.vscode/tasks.json
 | |
| !.vscode/launch.json
 | |
| !.vscode/extensions.json
 | |
| !.vscode/*.code-snippets
 | |
| 
 | |
| # Local History for Visual Studio Code
 | |
| .history/
 | |
| 
 | |
| # Built Visual Studio Code Extensions
 | |
| *.vsix
 | |
| 
 | |
| # ---> Windows
 | |
| # Windows thumbnail cache files
 | |
| Thumbs.db
 | |
| Thumbs.db:encryptable
 | |
| ehthumbs.db
 | |
| ehthumbs_vista.db
 | |
| 
 | |
| # Dump file
 | |
| *.stackdump
 | |
| 
 | |
| # Folder config file
 | |
| [Dd]esktop.ini
 | |
| 
 | |
| # Recycle Bin used on file shares
 | |
| $RECYCLE.BIN/
 | |
| 
 | |
| # Windows Installer files
 | |
| *.cab
 | |
| *.msi
 | |
| *.msix
 | |
| *.msm
 | |
| *.msp
 | |
| 
 | |
| # Windows shortcuts
 | |
| *.lnk
 | |
| 
 | |
| # ---> macOS
 | |
| # General
 | |
| .DS_Store
 | |
| .AppleDouble
 | |
| .LSOverride
 | |
| 
 | |
| # Icon must end with two \r
 | |
| Icon
 | |
| 
 | |
| 
 | |
| # Thumbnails
 | |
| ._*
 | |
| 
 | |
| # Files that might appear in the root of a volume
 | |
| .DocumentRevisions-V100
 | |
| .fseventsd
 | |
| .Spotlight-V100
 | |
| .TemporaryItems
 | |
| .Trashes
 | |
| .VolumeIcon.icns
 | |
| .com.apple.timemachine.donotpresent
 | |
| 
 | |
| # Directories potentially created on remote AFP share
 | |
| .AppleDB
 | |
| .AppleDesktop
 | |
| Network Trash Folder
 | |
| Temporary Items
 | |
| .apdisk
 | |
| 
 |