diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-11-21 14:53:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-21 06:53:29 -0700 |
commit | 5f7560b8daca7e87ae9d880a8657064244631892 (patch) | |
tree | 2caf92ae8db85ea6e1401c26b23ccc902e267b78 | |
parent | 2bb244af314e80afbab30b4db4490c8dae894b85 (diff) | |
download | rneovim-5f7560b8daca7e87ae9d880a8657064244631892.tar.gz rneovim-5f7560b8daca7e87ae9d880a8657064244631892.tar.bz2 rneovim-5f7560b8daca7e87ae9d880a8657064244631892.zip |
build(editorconfig): set indent_size to 4 for python files (#21135)
-rw-r--r-- | .editorconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 2aa956b1fc..07993e25b9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,6 +10,9 @@ insert_final_newline = true [*.{c,h,in,lua}] max_line_length = 100 +[*.py] +indent_size = 4 + [{Makefile,**/Makefile,runtime/doc/*.txt}] indent_style = tab indent_size = 8 |