nvim-lspconfig/.editorconfig
dundargoc 883bd793b4 build(editorconfig): set max_line_length to 120 only for lua files
Setting it for all filetypes is usually not correct. For example, git
commits are also affected by this option which makes 120 columns too
long.
2024-12-01 14:33:40 +01:00

16 lines
223 B
INI

root = true
[*]
indent_style = space
indent_size = 2
tab_width = 8
end_of_line = lf
insert_final_newline = true
[*.lua]
max_line_length = 120
[{Makefile,**/Makefile,runtime/doc/*.txt}]
indent_style = tab
indent_size = 8