diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-11-30 03:43:21 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-11-30 15:41:33 -0500 |
commit | be4735679f90656c0d29d32ab0288e8e60917336 (patch) | |
tree | e7a0558983ca60f7b6e1d11289bc30b2388c6873 | |
parent | 0e7dceb7325deb42faef3488d9663fd53388d17d (diff) | |
download | emacs.d-be4735679f90656c0d29d32ab0288e8e60917336.tar.gz |
Remove vendor directory
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | init.el | 1 | ||||
-rw-r--r-- | lisp/init-bog.el | 2 | ||||
-rw-r--r-- | lisp/init-git.el | 1 | ||||
-rw-r--r-- | lisp/init-snakemake.el | 2 |
5 files changed, 5 insertions, 2 deletions
@@ -2,7 +2,6 @@ auto-save-list cache elpa bookmarks -vendor /lisp/init-untracked.el /.mc-lists.el /projectile-bookmarks.eld @@ -1,6 +1,5 @@ (defvar init-lisp-dir (expand-file-name "lisp" user-emacs-directory)) (add-to-list 'load-path init-lisp-dir) -(add-to-list 'load-path (expand-file-name "vendor" user-emacs-directory)) (require 'init-elpa) (require 'init-appearance) diff --git a/lisp/init-bog.el b/lisp/init-bog.el index 31d68af..495ed22 100644 --- a/lisp/init-bog.el +++ b/lisp/init-bog.el @@ -1,3 +1,5 @@ +(add-to-list 'load-path "~/src/emacs/bog") + (setq bog-keymap-prefix (kbd "C-c b")) (global-set-key (kbd "C-c B") 'bog-commander) diff --git a/lisp/init-git.el b/lisp/init-git.el index c4896dd..13a0bda 100644 --- a/lisp/init-git.el +++ b/lisp/init-git.el @@ -1,4 +1,5 @@ (add-to-list 'load-path "~/src/emacs/magit") +(add-to-list 'load-path "~/src/emacs/magit-annex") (add-to-list 'load-path "~/src/emacs/orgit") (require 'magit-autoloads) diff --git a/lisp/init-snakemake.el b/lisp/init-snakemake.el index c3c4a7f..31ebf0e 100644 --- a/lisp/init-snakemake.el +++ b/lisp/init-snakemake.el @@ -1,3 +1,5 @@ +(add-to-list 'load-path "~/src/emacs/snakemake-mode") + (require 'snakemake-mode-autoloads) (setq snakemake-compile-command-options '("-p")) |