* Providing all init files, loading them with require

* Moved load-file-if-exists to init-functions
* Added init-misc.el for random things that don't fit anywhere else
* Never any tabs, ever. Go away!

Bindings:
* quit Emacs -> C-x r q ("real quit")
* delete-frame -> C-x C-c
* make-frame -> C-x C-n
This commit is contained in:
Vincent Ambo 2013-08-07 00:49:20 +02:00
parent 43a99dea3a
commit 503600091e
7 changed files with 43 additions and 11 deletions

View file

@ -45,6 +45,8 @@
(add-to-list 'safe-local-variable-values '(lexical-binding . t))
(add-to-list 'safe-local-variable-values '(whitespace-line-column . 80))
(set-default 'indent-tabs-mode nil)
;; ido-mode is like magic pixie dust!
(ido-mode t)
(ido-ubiquitous t)
@ -229,3 +231,5 @@ comment as a filename."
(global-set-key (kbd "C-c g") 'magit-status)
(remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
(provide 'init-settings)