neovim/.editorconfig
zeertzjq 07660193a3
chore(editorconfig): unset "charset" for *.vim and *.po files
There  are *.vim and *.po files ported from Vim that use a non-UTF-8 encoding.
2022-05-01 12:57:55 +08:00

20 lines
278 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,h,in,lua}]
max_line_length = 100
[*.{vim,po}]
charset = unset
[{Makefile,**/Makefile,runtime/doc/*.txt}]
indent_style = tab
indent_size = 8