10 lines
275 B
EmacsLisp
10 lines
275 B
EmacsLisp
|
;; 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)
|