9 lines
270 B
EmacsLisp
9 lines
270 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 'misc)
|