Files
godotdev.nvim/.editorconfig

29 lines
449 B
INI
Raw Normal View History

2025-09-08 10:39:32 +02:00
# EditorConfig for Godot projects
# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
2025-09-08 10:39:32 +02:00
# GDScript files
[*.gd]
indent_style = space
indent_size = 4
2025-09-08 10:39:32 +02:00
continuation_indent_size = 4
2025-09-08 10:39:32 +02:00
# Godot shader files
[*.gdshader]
indent_style = space
indent_size = 4
2025-09-08 10:39:32 +02:00
continuation_indent_size = 4
2025-09-08 10:39:32 +02:00
# C# files
[*.cs]
indent_style = space
indent_size = 4
continuation_indent_size = 4