1
0

Add home/.condarc

Add home/.editorconfig
Add home/.gitignore.global
This commit is contained in:
2024-03-02 16:30:29 +01:00
parent 73e4c3d3db
commit 931ca1f1b5
3 changed files with 422 additions and 0 deletions

41
home/dot_editorconfig Normal file
View File

@@ -0,0 +1,41 @@
################################
# EditorConfig config file #
################################
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[{*,.*}]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
max_line_length = off
charset = utf-8
[{Makefile,makefile,*.mk}]
indent_style = tab
[*.md]
indent_style = space
max_line_length = 100
[mutt-*,neomutt-*]
max_line_length = 72
[*.py]
indent_style = space
indent_size = 4
max_line_length = 79
[*.sh]
indent_style = space
max_line_length = 0
[*.vim]
indent_style = space
max_line_length = 0