forked from extern/nix-config
editorconfig: Don't trim markdown whitespace
Fixes an issue where auto-indents would be automatically removed with the auto-save plugin enabled. Should probably fix this behavior later so auto-indent works properly with all files.
This commit is contained in:
parent
526a9c7fe9
commit
d58fef7511
@ -73,7 +73,10 @@ in
|
||||
trim_trailing_whitespace = true;
|
||||
};
|
||||
|
||||
"*.md".indent_style = "tab";
|
||||
"*.md" = {
|
||||
indent_style = "tab";
|
||||
trim_trailing_whitespace = false;
|
||||
};
|
||||
|
||||
"Makefile" = {
|
||||
indent_style = "tab";
|
||||
|
Loading…
Reference in New Issue
Block a user