From 53885da6b1d1e171eef4e2ef6a3f7133b7d55fc4 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 12 Jan 2020 20:37:49 +0000 Subject: Add llvm mode locally --- emacs/loader.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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. -- cgit