about summary refs log tree commit diff
path: root/init-functions.el
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-10-14T06·50+0200
committerVincent Ambo <vincent@spotify.com>2013-10-14T06·50+0200
commitcbecd5031d57528c39b61e16f2aad850f40b49a1 (patch)
treeef073e5dfef369f2b4f72d9fce012becd2bd61ee /init-functions.el
parenta4e7f10362c807e5494debc2810f490cb2350608 (diff)
Add YaSnippet & enable Uniquify
- Added YaSnippet & clojure-snippets for it
- Enabled uniquify buffer naming (oh so good)
- various smaller things
Diffstat (limited to 'init-functions.el')
-rw-r--r--init-functions.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init-functions.el b/init-functions.el
index b461b2e6a720..033c525eb5ce 100644
--- a/init-functions.el
+++ b/init-functions.el
@@ -50,7 +50,7 @@
 ;; if there isn't already a folder with that name
 (defun custom-clone-git (url foldername)
   "Clones a git repository to .emacs.d/foldername"
-  (let ((fullpath (concat "~/.emacs.d/clones/" foldername)))
+  (let ((fullpath (concat "~/.emacs.d/" foldername)))
     (unless (file-exists-p fullpath)
       (async-shell-command (concat "git clone " url " " fullpath)))))