Primo backup dei file di configurazione

This commit is contained in:
Fabio Scotto di Santolo
2019-12-07 10:35:39 +01:00
parent 0d8b5e6840
commit 950b3dce24
13 changed files with 794 additions and 0 deletions

42
.emacs Normal file
View File

@@ -0,0 +1,42 @@
(package-initialize)
;; Aggiunge il repository melpa
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
;; Configurazione di Smex
(global-set-key (kbd "M-x") 'smex)
(global-set-key (kbd "M-X") 'smex-major-mode-commands)
;; This is you old M-x
(global-set-key (kbd "C-c C-c M-x") 'execute-extended-command)
;; Elimina lo screen allo startup
(setq inhibit-startup-screen t)
;; Elimina la menù bar
(menu-bar-mode 0)
;; Elimina la toolbar
(tool-bar-mode 0)
(ido-mode 1)
;; Configura il font di default
(set-default-font "Fira Code-12")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-enabled-themes (quote (wombat)))
'(package-selected-packages (quote (smex))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
;; Imposta il backup della configurazione
(setq backup-directory-alist '(("." . "~/.emacs_saves")))