From 7367da52fbe60b298855c55c91ba7e5c850e5bf0 Mon Sep 17 00:00:00 2001 From: Francesco Date: Mon, 26 Jan 2026 00:51:55 +0100 Subject: [PATCH] feat(clangd): add .clangd and .clang-format --- .clang-format | 8 ++++++++ .clangd | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 .clang-format create mode 100644 .clangd diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..f7cfc80 --- /dev/null +++ b/.clang-format @@ -0,0 +1,8 @@ +BasedOnStyle: LLVM +UseTab: Always +TabWidth: 4 +IndentWidth: 4 +IndentCaseLabels: true +ColumnLimit: 120 +PointerAlignment: Right +AllowShortFunctionsOnASingleLine: None diff --git a/.clangd b/.clangd new file mode 100644 index 0000000..c2520c5 --- /dev/null +++ b/.clangd @@ -0,0 +1,2 @@ +Completion: + HeaderInsertion: Never