Emacs configuration for Clojure on MacOS

This commit is contained in:
Fabio Scotto di Santolo
2020-09-27 11:11:29 +02:00
parent 4757524cc5
commit 0079f6bbb3
11 changed files with 614 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
;; Changes all yes/no questions to y/n type
(fset 'yes-or-no-p 'y-or-n-p)
;; shell scripts
(setq-default sh-basic-offset 2)
(setq-default sh-indentation 2)
;; No need for ~ files when editing
(setq create-lockfiles nil)
;; Go straight to scratch buffer on startup
(setq inhibit-startup-message t)