Lisp programmers generally prefer code formatted in this manner:
(defun hello-world (arg1 arg2 arg3 arg4 arg5
arg6 arg7)
;; Most editors indent two spaces by default
(print "Hello World!")
(if arg1
(some-function-that-takes-lots-of-args arg1 arg2 arg3 arg4
arg5 arg6 arg7)
(some-other-function "Bob the Wonder Llama")))
While you will see some variation in style between different Lisp programmers' code, there is remarkable unanimity on the basics--the Lisp world does not suffer from "brace wars" the way curly brace languages do. (LOOP formatting, however, does tend to be a bit more freeform, as there are too few parentheses to make the indentation obvious and automatic. Some consider this one of LOOP's biggest flaws.)