/ modules / home / editorconfig.nix
editorconfig.nix
 1  {
 2    editorconfig = {
 3      enable = true;
 4      settings = {
 5        "*" = {
 6          indent_size = 2;
 7          charset = "utf-8";
 8          indent_style = "space";
 9          insert_final_newline = true;
10          trim_trailing_whitespace = true;
11        };
12  
13        "*.md" = {
14          max_line_length = "off";
15          trim_trailing_whitespace = false;
16        };
17      };
18    };
19  }