Aggiunta configurazione per Erlang e Clojure

This commit is contained in:
Fabio Scotto di Santolo
2020-01-03 16:15:59 +01:00
parent a66d1d18f6
commit 50e821983d
7 changed files with 201 additions and 41 deletions

View File

@@ -132,7 +132,18 @@ This command does the inverse of `fill-paragraph'."
(setq x-alt-keysym 'meta)
(setq confirm-kill-emacs 'y-or-n-p)
;; 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)
(add-hook 'emacs-startup-hook
(lambda ()
@@ -143,3 +154,4 @@ This command does the inverse of `fill-paragraph'."
(server-start)