Skip to content

Getting Started on Mac Spacemacs

paynito edited this page Feb 6, 2017 · 1 revision

The emacs major mode hledger-mode relies on the cli tool hledger. You can install this with

brew install hledger

To install hledger-mode in spacemacs, add it to your list of packages under

   dotspacemacs-additional-packages '(hledger-mode)

Be sure that you have the melpa package directory available. That goes in user-init.

(defun dotspacemacs/user-init ()
(add-to-list 'package-archives
             '("melpa" . "https://melpa.org/packages/"))
(package-initialize)
)
Clone this wiki locally