# Base style on Google Chromium, but with a few tweaks
BasedOnStyle: Chromium

# Use 4 spaces for indentation
IndentWidth: 4

# Max line length is 110
ColumnLimit: 110

---

Language: Cpp

# Align pointers to the right
DerivePointerAlignment: false
PointerAlignment: Right

# Sort includes as local first, then global
IncludeBlocks: Regroup
IncludeCategories:
  - Regex:           '.*'
    Priority:        0
    SortPriority:    0
  - Regex:           '^<.*'
    Priority:        1
    SortPriority:    0

