mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 12:45:17 -07:00
0d7a97224f
We established a while ago that 100 chars is our line length for both C and Lua. Not all editorconfig plugins support the "max_line_length" option, but many do (including all of the ones available for Vim/Neovim to the best of my knowledge).
17 lines
243 B
INI
17 lines
243 B
INI
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 2
|
|
tab_width = 8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
charset = utf-8
|
|
|
|
[*.{c,lua}]
|
|
max_line_length = 100
|
|
|
|
[{Makefile,**/Makefile,runtime/doc/*.txt}]
|
|
indent_style = tab
|
|
indent_size = 8
|