.gitignore (816B)
1 2 # Created by https://www.toptal.com/developers/gitignore/api/vim,linux 3 # Edit at https://www.toptal.com/developers/gitignore?templates=vim,linux 4 5 ### Linux ### 6 *~ 7 8 # temporary files which can be created if a process still has a handle open of a deleted file 9 .fuse_hidden* 10 11 # KDE directory preferences 12 .directory 13 14 # Linux trash folder which might appear on any partition or disk 15 .Trash-* 16 17 # .nfs files are created when an open file is removed but is still being accessed 18 .nfs* 19 20 ### Vim ### 21 # Swap 22 [._]*.s[a-v][a-z] 23 !*.svg # comment out if you don't need vector files 24 [._]*.sw[a-p] 25 [._]s[a-rt-v][a-z] 26 [._]ss[a-gi-z] 27 [._]sw[a-p] 28 29 # Session 30 Session.vim 31 Sessionx.vim 32 33 # Temporary 34 .netrwhist 35 # Auto-generated tag files 36 tags 37 # Persistent undo 38 [._]*.un~ 39 40 # End of https://www.toptal.com/developers/gitignore/api/vim,linux