I would like to set the fill-column in Emacs to 120 for Clojure-mode, but leave it at the default (80) otherwise.
How can I do this in my .emacs file?
Thanks.
|
|
|
Add a call to
As You can check if a variable is buffer local by invoking the help:
|
||||
|
|
|
fill-column is a buffer-local variable, i.e. it can have unique value in each buffer (if you want). So you can just set it in clojure-mode hook. |
|||
|
|