Created
April 16, 2014 12:54
-
-
Save diogomoretti/10869863 to your computer and use it in GitHub Desktop.
gitignore.sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
# Useful `.gitignore` templates: | |
# - https://github.com/github/gitignore | |
# OSX taken from: https://github.com/github/gitignore/blob/master/Global/OSX.gitignore | |
# ---------------------------------------------------------------------------------------------- | |
._* | |
.AppleDouble | |
.DS_Store | |
.localized | |
.LSOverride | |
.Spotlight-V100 | |
.Trashes | |
Icon | |
# Windows taken from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore | |
# ---------------------------------------------------------------------------------------------- | |
Desktop.ini | |
ehthumbs.db | |
Thumbs.db | |
# Linux | |
# ---------------------------------------------------------------------------------------------- | |
*~ | |
# Tags taken from: https://github.com/github/gitignore/blob/master/Global/Tags.gitignore | |
# ---------------------------------------------------------------------------------------------- | |
# Ignore tags created by etags and ctags | |
TAGS | |
tags | |
# Vim taken from: https://github.com/github/gitignore/blob/master/Global/vim.gitignore | |
# ---------------------------------------------------------------------------------------------- | |
.*.sw[a-z] | |
.netrwhist | |
*.un~ | |
Session.vim | |
# Projects: common ignored files | |
# ---------------------------------------------------------------------------------------------- | |
components | |
bower_components | |
.sass-cache | |
node_modules | |
.grunt | |
.ftppass | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>gitignore</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<!-- <scope>source.python</scope> --> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment