ignore .directory file

This commit is contained in:
Alexander Popov 2023-04-05 12:02:51 +03:00
parent d5c2307eeb
commit 6041a99ea6
3 changed files with 5 additions and 4 deletions

View File

@ -13,14 +13,14 @@
[user]
name = Alexander Popov
email = iiiypuk@fastmail.fm
signingkey = 9F04A70C
signingkey =
[core]
eol = lf
autocrlf = input
excludesFile = ~/.gitignore
editor = micro
[commit]
gpgsign = true
gpgsign = false
[gpg]
program = /usr/bin/gpg
[init]

1
~/Git/.gitignore vendored
View File

@ -3,3 +3,4 @@ __pycache__/
node_modules/
vendor/
composer.phar
.directory

View File

@ -12,10 +12,10 @@
"show_line_endings": true,
"highlight_line": true,
"folder_exclude_patterns": [".git", "node_modules", "venv", "vendor", "tpl_cache"],
"file_exclude_patterns": ["composer.phar", "*.sqlite3"],
"file_exclude_patterns": ["composer.phar", "*.sqlite3", ".directory"],
"ignored_packages":
[
"Vintage",
],
"theme": "Adaptive.sublime-theme"
"theme": "Adaptive.sublime-theme",
}