1
0
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:
Donovan Glover 2023-07-15 12:34:26 -04:00
parent 526a9c7fe9
commit d58fef7511
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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";