about summary refs log tree commit diff
path: root/init/misc.el
diff options
context:
space:
mode:
authorVincent Ambo <vincent@kivra.com>2014-10-21T17·37+0200
committerVincent Ambo <vincent@kivra.com>2014-10-21T17·37+0200
commit1f70abb1769a3528f23bc96ee3f570338ace50d3 (patch)
tree9517f6eab292a13cdd4a4cfb7768471aace41a3c /init/misc.el
parent10057a887b931b25d93691992c35665cac277fcb (diff)
Move all configuration to subfolder
Diffstat (limited to 'init/misc.el')
-rw-r--r--init/misc.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/init/misc.el b/init/misc.el
new file mode 100644
index 000000000000..940370493007
--- /dev/null
+++ b/init/misc.el
@@ -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)