diff --git a/modules/formatting/siren-clang-format.el b/modules/formatting/siren-clang-format.el new file mode 100644 index 0000000..31d73ad --- /dev/null +++ b/modules/formatting/siren-clang-format.el @@ -0,0 +1,14 @@ +;;; siren-clang-format.el --- jimeh's Emacs Siren: clang-format configuration. + +;;; Commentary: + +;; Basic configuration for clang-format package + +;;; Code: + +(use-package clang-format + :straight (:type built-in) ;; from vendor directory + :defer t) + +(provide 'siren-clang-format) +;;; siren-clang-format.el ends here