mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
84fcba9b01
According to https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties the possible values of the charset property are "latin1", "utf-8", "utf-16be", "utf-16le", or "utf-8-bom" (case insensitive), not "utf_8" It breaks https://github.com/sgur/vim-editorconfig/ for example.
13 lines
194 B
INI
13 lines
194 B
INI
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
charset = utf-8
|
|
|
|
[{Makefile,**/Makefile,runtime/doc/*.txt}]
|
|
indent_style = tab
|
|
indent_size = 8
|