Move all configuration to subfolder

This commit is contained in:
Vincent Ambo 2014-10-21 19:37:19 +02:00
parent 10057a887b
commit 1f70abb176
No known key found for this signature in database
GPG key ID: 66F505681DB8F43B
10 changed files with 14 additions and 39 deletions

9
init/misc.el Normal file
View file

@ -0,0 +1,9 @@
;; For everything that doesn't fit anywhere else.
;; Ignore .DS_Store files with ido mode
(add-to-list 'ido-ignore-files "\\.DS_Store")
;; Use aspell for spell checking: brew install aspell --lang=en
(setq ispell-program-name "/usr/local/bin/aspell")
(provide 'misc)