diff options
author | Markus Witt <feuerrot@feuerrot.org> | 2019-04-13 23:49:49 +0200 |
---|---|---|
committer | Markus Witt <feuerrot@feuerrot.org> | 2019-05-03 22:36:12 +0200 |
commit | 386d56a20e2ba1f98bde896897cc4e96b6dd75dc (patch) | |
tree | 69cf6b901afadc1fc11962ad927b9e89149e2fd7 /.gitignore | |
parent | 122e2a7b4a5a994b5a55bafd7304aa879f3bd17b (diff) |
Add a basic docker file
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 61 |
1 files changed, 61 insertions, 0 deletions
@@ -1 +1,62 @@ /travelynx.conf + +# Created by https://www.gitignore.io/api/vim,perl +# Edit at https://www.gitignore.io/?templates=vim,perl + +### Perl ### +!Build/ +.last_cover_stats +/META.yml +/META.json +/MYMETA.* +*.o +*.pm.tdy +*.bs + +# Devel::Cover +cover_db/ + +# Devel::NYTProf +nytprof.out + +# Dizt::Zilla +/.build/ + +# Module::Build +_build/ +Build +Build.bat + +# Module::Install +inc/ + +# ExtUtils::MakeMaker +/blib/ +/_eumm/ +/*.gz +/Makefile +/Makefile.old +/MANIFEST.bak +/pm_to_blib +/*.zip + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +# End of https://www.gitignore.io/api/vim,perl |