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
commitff92d0689621f8d7b3838c13ceb4cdba00e1ea0b (patch)
treedd206d519e4d632bce661f8f16eba16137c5b514 /init.el
parent865a51f78d37c0fe931d08339c8758684c46f655 (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)