about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-07-07T22·16+0200
committerVincent Ambo <vincent@spotify.com>2013-07-07T22·16+0200
commit90f95a6a3dd5a95a3df315a9dfcdf8ea94d59104 (patch)
tree62860c4f1ab7a741e4682f45bc9e42a7987d2ee6
parentc8dc574fcd374c1e1cdc59e5da0331e5dc361106 (diff)
Emacs: Added file init-functions.el which I'll use for handy functions
-rw-r--r--init-functions.el23
1 files changed, 23 insertions, 0 deletions
diff --git a/init-functions.el b/init-functions.el
new file mode 100644
index 0000000000..43d7c81c2f
--- /dev/null
+++ b/init-functions.el
@@ -0,0 +1,23 @@
+;; A few handy functions I use in init.el (or not, but they're nice to
+;; have)
+
+;; Ensure that the themes folder exists
+
+(defun custom-download-theme (url filename)
+  "Downloads a theme through HTTP and places it in ~/.emacs.d/themes"
+
+  ;; Ensure the directory exists
+  (unless (file-exists-p "~/.emacs.d/themes")
+    (make-directory "~/.emacs.d/themes"))
+
+  ;; Adds the themes folder to the theme load path (if not already
+  ;; there)
+  (unless (member "~/.emacs.d/themes" custom-theme-load-path)
+    (add-to-list 'custom-theme-load-path "~/.emacs.d/themes"))
+ 
+  ;; Download file if it doesn't exist.
+
+  (let ((file
+         (concat "~/.emacs.d/themes/" filename)))
+    (unless (file-exists-p file)
+      (url-copy-file url file))))