From 5ca97cad3c1ce2c47a97e2eb992cefd059366c60 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 6 Jan 2020 17:21:11 +0100 Subject: [PATCH] Add gitignore file --- .gitignore | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..386e60b --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +*/.netrwhist +**/gopass-logo-small.png + +# Created by https://www.gitignore.io/api/vim,linux +# Edit at https://www.gitignore.io/?templates=vim,linux + +### 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* + +### 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 +Sessionx.vim + +# Temporary +.netrwhist + +# Auto-generated tag files +tags + +# Persistent undo +[._]*.un~ + +# Coc configuration directory +.vim + +# End of https://www.gitignore.io/api/vim,linux