1
0
forked from extern/nix-config

neovim: Don't trim trailing whitespace on save

Fixes an issue where autosave would cause indentation to be lost due to
editorconfig removing extra whitespace.
This commit is contained in:
Donovan Glover 2023-07-26 18:24:13 -04:00
parent 55c5078919
commit 6c14b37a9f
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -73,12 +73,11 @@ in
insert_final_newline = true;
indent_size = 2;
indent_style = "space";
trim_trailing_whitespace = true;
trim_trailing_whitespace = false;
};
"*.md" = {
indent_style = "tab";
trim_trailing_whitespace = false;
};
"Makefile" = {