Browse Source

Merge branch 'global-gitignore'

DricomDragon 5 years ago
parent
commit
e3b5ab8352
2 changed files with 34 additions and 0 deletions
  1. 30 0
      Install/Templates/gitignore
  2. 4 0
      Install/git-custom

+ 30 - 0
Install/Templates/gitignore

@@ -0,0 +1,30 @@
+# Created by https://www.gitignore.io/api/vim
+# Edit at https://www.gitignore.io/?templates=vim
+
+### 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
+

+ 4 - 0
Install/git-custom

@@ -8,6 +8,10 @@ git config --global user.name "DricomDragon" ;
 git config --global core.editor "vim" ;
 git config --global push.followTags true
 git config --global diff.tool vimdiff
+git config --global core.excludesfile '~/.gitignore'
+
+# Copy global gitignore
+cp ./Templates/gitignore ~/.gitignore
 
 # Create GitWork
 mkdir ~/GitWork ;