aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-01-12 20:37:49 +0000
committerYann Herklotz <git@yannherklotz.com>2020-01-12 20:37:49 +0000
commit53885da6b1d1e171eef4e2ef6a3f7133b7d55fc4 (patch)
tree769a5ea8a102f2b57fe1fc05f7813c7fb150d78d
parent14cc6163b2f89866f7b69e94c51cac7376a9dc7d (diff)
downloaddotfiles-53885da6b1d1e171eef4e2ef6a3f7133b7d55fc4.tar.gz
dotfiles-53885da6b1d1e171eef4e2ef6a3f7133b7d55fc4.zip
Add llvm mode locally
-rw-r--r--emacs/loader.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/emacs/loader.org b/emacs/loader.org
index a2f7761..02f5403 100644
--- a/emacs/loader.org
+++ b/emacs/loader.org
@@ -72,6 +72,9 @@ be used to load any file in that directory.
(interactive "f")
"Load a file in current user's configuration directory"
(load-file (expand-file-name file user-init-dir)))
+
+ (setq load-path
+ (cons (expand-file-name "~/.emacs.d/modes") load-path))
#+END_SRC
** Repositories
@@ -1175,6 +1178,15 @@ Haskell mode with company mode completion.
#+RESULTS:
| (lambda nil (set (make-local-variable (quote projectile-tags-command)) hasktags -Re -f "%s" %s "%s")) | (lambda nil (local-set-key (kbd C-c v) (quote haskell-add-import))) | (lambda nil (local-set-key (kbd C-c y a) (quote y/haskell-align-comment))) | haskell-decl-scan-mode | interactive-haskell-mode |
+*** LLVM IR
+
+#+begin_src emacs-lisp
+ (require 'llvm-mode)
+#+end_src
+
+#+RESULTS:
+: llvm-mode
+
*** Python
Elpy package for python, which provides an IDE type environment for python.