mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 01:05:48 +02:00
[Most major editors](https://editorconfig.org/#download) support EditorConfig for declaring per-file per-project indentation rules. It costs almost nothing to maintain, and it makes it easier to follow the coding styles already used in kitty.
15 lines
240 B
INI
15 lines
240 B
INI
root = true
|
|
|
|
[*]
|
|
indent_style = spaces
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
trim_trailing_whitespace = true
|
|
|
|
[{Makefile,*.terminfo}]
|
|
indent_style = tab
|
|
|
|
# Autogenerated with tabs.
|
|
[kitty/{unicode-data.c,emoji.wcwidth-std.h}]
|
|
indent_style = tab
|