From cbecd5031d57528c39b61e16f2aad850f40b49a1 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 14 Oct 2013 08:50:56 +0200 Subject: Add YaSnippet & enable Uniquify - Added YaSnippet & clojure-snippets for it - Enabled uniquify buffer naming (oh so good) - various smaller things --- init.el | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'init.el') diff --git a/init.el b/init.el index cb35667772c6..473a7b677789 100644 --- a/init.el +++ b/init.el @@ -25,7 +25,6 @@ idle-highlight-mode ido-ubiquitous iy-go-to-char - leuven-theme magit markdown-mode multiple-cursors @@ -37,7 +36,8 @@ rainbow-mode smex switch-window - undo-tree) + undo-tree + yasnippet) "A list of packages to install at launch.") (dolist (p my-pkgs) @@ -49,8 +49,15 @@ (add-to-list 'load-path user-emacs-directory) -(mapc 'require '(init-functions - init-settings +(require 'init-functions) + +(unless (file-exists-p "~/.emacs.d/snippets") + (make-directory "~/.emacs.d/snippets")) + +(custom-clone-git "http://github.com/swannodette/clojure-snippets" + "snippets/clojure-mode") + +(mapc 'require '(init-settings init-modes init-bindings init-eshell)) -- cgit 1.4.1