summaryrefslogtreecommitdiff
path: root/conf/uncrustify.el
diff options
context:
space:
mode:
Diffstat (limited to 'conf/uncrustify.el')
-rw-r--r--conf/uncrustify.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/conf/uncrustify.el b/conf/uncrustify.el
new file mode 100644
index 0000000..2ab6961
--- /dev/null
+++ b/conf/uncrustify.el
@@ -0,0 +1,13 @@
+;; suggested integration of uncrustify for Emacs
+;; This assumes that the 'uncrustify-mode.el' is
+;; installed to '~/.emacs.d/load-path/'. Feel free
+;; to put it elsewhere and adjust the load path below!
+
+;; adding the following to ~/.emacs will then run
+;; uncrustify whenever saving a C buffer.
+
+(add-to-list 'load-path "~/.emacs.d/load-path/")
+(require 'uncrustify-mode)
+(add-hook 'c-mode-common-hook
+ '(lambda ()
+ (uncrustify-mode 1)))