mirror of
https://github.com/neovim/nvim-lspconfig
synced 2025-03-11 04:27:36 +00:00
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.
16 lines
223 B
INI
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
|