From c840e4bd4f18d5192c56afada08442e60ad0d405 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 13 Sep 2023 08:57:50 -0500 Subject: [PATCH] ajusted .clang-format --- neovim/.clang-format | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/neovim/.clang-format b/neovim/.clang-format index c68dd42..1993dc1 100644 --- a/neovim/.clang-format +++ b/neovim/.clang-format @@ -1,10 +1,12 @@ --- #this syncronizes with settings used by neovims treesitters so that the lsp formatting and treesitter formatting do not fight eatch other. PointerAlignment: Left -ColumnLimit: 120 -IndentWidth: 4 -TabWidth: 4 -UseCRLF: false -UseTab: true +ColumnLimit: 120 +IndentWidth: 4 +TabWidth: 4 +UseCRLF: false +UseTab: AlignWithSpaces +AlignAfterOpenBracket: BlockIndent +AlwaysBreakBeforeMultilineStrings: true ...