dotfiles/neovim/.clang-format

15 lines
417 B
Plaintext
Raw Normal View History

---
#this syncronizes with settings used by neovims treesitters so that the lsp formatting and treesitter formatting do not fight eatch other.
PointerAlignment: Left
2023-09-13 15:57:50 +02:00
ColumnLimit: 120
IndentWidth: 4
TabWidth: 4
UseCRLF: false
UseTab: AlignWithSpaces
AlignAfterOpenBracket: BlockIndent
AlwaysBreakBeforeMultilineStrings: true
2023-09-13 15:57:50 +02:00
BreakBeforeBraces: Attach
AlignOperands: Align
BreakBeforeBinaryOperators: NonAssignment
...