protocols/
test/
.clang-format
571 B
.clangd
365 B
.gitignore
82 B
.gitsigners
91 B
LICENSE
32.3 KiB
LICENSE.dwl
34.9 KiB
LICENSE.dwm
2.0 KiB
LICENSE.spectrwm
1.3 KiB
LICENSE.sway
1.0 KiB
LICENSE.tinywl
7.0 KiB
Makefile
7.8 KiB
PKGBUILD
952 B
README
5.6 KiB
config.def.h
15.7 KiB
config.mk
269 B
swm.1.adoc
3.3 KiB
swm.c
246.5 KiB
swm.desktop
81 B
swm.h
3.5 KiB
swmctl.1.adoc
2.5 KiB
swmctl.c
19.6 KiB
util.c
2.2 KiB
util.h
399 B
.clang-format
raw
| 1 | IndentWidth: 4 |
| 2 | ColumnLimit: 100 |
| 3 | UseTab: Never |
| 4 | AllowShortBlocksOnASingleLine: Always # or use 'Empty' for only empty blocks |
| 5 | AllowShortFunctionsOnASingleLine: Empty |
| 6 | AlignConsecutiveMacros: AcrossComments |
| 7 | AlignAfterOpenBracket: BlockIndent |
| 8 | AlignConsecutiveBitFields: AcrossEmptyLinesAndComments |
| 9 | AlignConsecutiveDeclarations: |
| 10 | Enabled: true |
| 11 | AlignConsecutiveAssignments: |
| 12 | Enabled: true |
| 13 | AlignCompound: true |
| 14 | PadOperators: true |
| 15 | BinPackParameters: false |
| 16 | BinPackArguments: false |
| 17 | BreakAfterReturnType: Automatic |
| 18 | PenaltyReturnTypeOnItsOwnLine: 999 |
| 19 | Cpp11BracedListStyle: false |