doomemacs/modules/feature/file-templates/templates/gitignore-mode/__
2017-12-09 14:40:14 -05:00

24 lines
637 B
Text

.DS_Store
.idea
*.log
tmp/
`(let ((type-ignore (yas-choose-value '("(none)" "python" "ruby" "java" "js"))))
(string-join
(cond ((string= type-ignore "python")
'("*.py[cod]"
"*.egg"
"build"
"htmlcov"))
((string= type-ignore "ruby")
'(".ruby-version"
".bundle"
"vendor"
"Gemfile.lock"
"coverage"))
((string= type-ignore "java")
'("*.class"
"build"))
((string= type-ignore "js")
'("*.tern-port")))
"\n"))`