mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
15 lines
316 B
EmacsLisp
15 lines
316 B
EmacsLisp
;;; 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
|