diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-30 22:08:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-30 22:08:51 -0300 |
commit | aaf4dba5eb1448aa237b6781a3b6d6642d81e1c9 (patch) | |
tree | 948a0546d59c47c4946c628d868c933e7110ecc2 | |
parent | a034f0196525b0159ef7665eb3331387390baf4d (diff) | |
download | renpy-aaf4dba5eb1448aa237b6781a3b6d6642d81e1c9.tar.gz renpy-aaf4dba5eb1448aa237b6781a3b6d6642d81e1c9.tar.bz2 renpy-aaf4dba5eb1448aa237b6781a3b6d6642d81e1c9.tar.xz renpy-aaf4dba5eb1448aa237b6781a3b6d6642d81e1c9.zip |
Add syntax highlight (maybe)
-rw-r--r-- | .editorconfig | 9 | ||||
-rw-r--r-- | .gitattributes | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..cc391d8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +# top-most EditorConfig file +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ff51aab --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# treat script files as PY (for highlighting in merge requests) +**/*.rpy linguist-language=Python gitlab-language=python |