diff options
author | Alan Pearce | 2017-09-18 18:56:14 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-18 18:56:14 +0200 |
commit | f7b470763a0f1ccf9a441531e64f1807a82f9df3 (patch) | |
tree | 5e14857efd9a174055b5f0de108f3633fec5f28c /emacs | |
parent | b5a3397bb47243716738747ec82ef5019a798819 (diff) | |
download | dotfiles-f7b470763a0f1ccf9a441531e64f1807a82f9df3.tar.lz dotfiles-f7b470763a0f1ccf9a441531e64f1807a82f9df3.tar.zst dotfiles-f7b470763a0f1ccf9a441531e64f1807a82f9df3.zip |
Emacs: Fix beancount loading
If another repository exists whose name includes beancount and sorts before it, then loading beancount.el will fail due to incorrect load path
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/main.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 1aa78a4..aee8450 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1785,7 +1785,7 @@ With prefix TO-CURRENT-BUFFER, insert command output into buffer." ;;;;;; Beancount ;; #+BEGIN_SRC emacs-lisp -(let ((beancount-dir (car (split-string (shell-command-to-string "ghq list --full-path beancount"))))) +(let ((beancount-dir (car (split-string (shell-command-to-string "ghq list --full-path blais/beancount"))))) (when (and beancount-dir (file-directory-p beancount-dir)) (add-to-list 'load-path (expand-file-name "editors/emacs/" |