blob: 87343205b771caccd68f0c313321406c41d1f017 (
plain) (
blame)
1
2
3
4
5
6
7
8
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 'init-misc)
|