diff options
-rw-r--r-- | .gitignore | 11 | ||||
-rw-r--r-- | .stowrc | 5 | ||||
-rw-r--r-- | dot-gitignore | 27 |
3 files changed, 30 insertions, 13 deletions
diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 756b4c9..0000000 --- a/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -# vim -*.sw* - -# intellij -.idea -out - -# C -*.out - - @@ -1,6 +1,7 @@ --dir=~/configs/dotfiles/ --target=~/ ---ignore=.git ---ignore=README.org +--dotfiles +--ignore='\.git' +--ignore=README\.org --ignore=LICENSE --verbose diff --git a/dot-gitignore b/dot-gitignore new file mode 100644 index 0000000..fe19d1c --- /dev/null +++ b/dot-gitignore @@ -0,0 +1,27 @@ +# vim +*.sw* + +# emacs +*.*~ + + +# intellij +.idea +out + +# Java +target +*.class + +# Scala +.sbt +.ivy +.bsp + +# nodejs +node_modules + +# C +*.out + + |