.editorconfig 384 B

1234567891011121314151617
  1. # EditorConfig configuration for htop
  2. # http://EditorConfig.org
  3. # top-most EditorConfig file
  4. root = true
  5. # Unix-style newlines with a newline ending every file, utf-8 charset
  6. [*]
  7. end_of_line = lf
  8. insert_final_newline = true
  9. charset = utf-8
  10. # match C source and header files, set indent to three spaces
  11. [*.{c,h}]
  12. indent_style = space
  13. indent_size = 3
  14. trim_trailing_whitespace = true