Skip to content

Instantly share code, notes, and snippets.

@H1rono
H1rono / .editorconfig
Last active May 29, 2023 06:02
My default .editorconfig
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 4
tab_width = 4
trim_trailing_whitespace = true
@H1rono
H1rono / .clang-format
Created November 21, 2022 22:08
my favorite clang-format configuration
BasedOnStyle: WebKit
AlignAfterOpenBracket: BlockIndent
AlignArrayOfStructures: Right
AlignOperands: Align
AllowShortFunctionsOnASingleLine: Empty
AllowShortLambdasOnASingleLine: Empty
AlwaysBreakBeforeMultilineStrings: true
AlwaysBreakTemplateDeclarations: Yes
BraceWrapping:
AfterCaseLabel: false