src.nth.io/

summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2009-12-13 11:45:37 -0600
committerLuke Hoersten <[email protected]>2009-12-13 11:45:37 -0600
commitfcc4fef5ae8adec386f8e0d94e5f332cc6f8c3c8 (patch)
treedd206d519e4d632bce661f8f16eba16137c5b514 /init.el
parenta000043b62d280268b0369e3f2be8a4badafc4c7 (diff)
Updated nav and yasnipped modes as well as cleaned up the pastebin script.
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/init.el b/init.el
index cf19d73..f0c904b 100644
--- a/init.el
+++ b/init.el
@@ -44,18 +44,22 @@
;; includes
(require 'hoersten-pastebin-region) ; send selected text to pastebin
(require 'mercurial) ; load mercurial mode
-(require 'nav) ; load nav bar
(require 'hoersten-c-style) ; load c specific lisp
+;; nav mode
+(add-to-list 'load-path "~/.emacs.d/nav/")
+(require 'nav)
+
;; unicode
(require 'pretty-mode)
(global-pretty-mode t)
(setq haskell-font-lock-symbols 'unicode)
;; snippets
+(add-to-list 'load-path "~/.emacs.d/yasnippet/")
(require 'yasnippet)
(yas/initialize)
-(yas/load-directory "~/.emacs.d/snippets/")
+(yas/load-directory "~/.emacs.d/yasnippet/snippets/")
;; zencoding html
(require 'zencoding-mode)