Add YaSnippet & enable Uniquify

- Added YaSnippet & clojure-snippets for it
- Enabled uniquify buffer naming (oh so good)
- various smaller things
This commit is contained in:
Vincent Ambo 2013-10-14 08:50:56 +02:00
parent a4e7f10362
commit cbecd5031d
6 changed files with 24 additions and 9 deletions

View file

@ -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)))))