diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-08-26 16:06:53 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-08-26 16:06:53 -0600 |
commit | 4684efd8216bd3b4d2f2af7b439e030309e85206 (patch) | |
tree | d4e760a7a133e29a5f0739ba4ed9130ba4da0cae /.editorconfig | |
parent | e6952fe070ff31e8e6c3d77907681601e6da30e6 (diff) |
feat: add neovim-qt support (windows) and .editorconfig
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3ff67ef --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# https://EditorConfig.org +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +# 4 space indentation +[*.lua] +indent_style = space +indent_size = 4 |