clang-format: copy latest and re-format

clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.

Change-Id: Ie54441d565a3b72e24382929becc9101d7611510
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/nvme_main.cpp b/nvme_main.cpp
index c9e3a96..b6c9b87 100644
--- a/nvme_main.cpp
+++ b/nvme_main.cpp
@@ -2,17 +2,17 @@
 
 #include <string.h>
 
-#include <fstream>
 #include <phosphor-logging/elog-errors.hpp>
 #include <phosphor-logging/log.hpp>
 #include <sdbusplus/bus.hpp>
 #include <sdbusplus/sdbus.hpp>
 #include <sdbusplus/server/manager.hpp>
+
+#include <fstream>
 using namespace phosphor::logging;
 
 int main(void)
 {
-
     sdbusplus::bus_t bus = sdbusplus::bus::new_default();
 
     sd_event* event = nullptr;
@@ -40,4 +40,4 @@
     bus.detach_event();
 
     return 0;
-}
\ No newline at end of file
+}