hyperbole
hyperbole copied to clipboard
Adding installation instructions using git or git+borg
I was looking at the info directory and I would need more time to figure out the syntax so that part still needs done
I mixed Manual git and borg instructions in this change, They might want to be parsed out.
Notes I found while doing this If you have Staight all you need is (straight-use-package hyperbole) and nothing else, I don't know where it gets the recipe from or if you want to override it. If you use Elpaca it dosn't work without some additional work https://github.com/progfolio/elpaca
Emacs initialization can be a bit tricky. My basic initialization code looks like this.
;; Use own version for development if it exists
(when (file-exists-p "~/src/hyperbole")
(add-to-list 'load-path "~/src/hyperbole"))
(require 'hyperbole)
(hyperbole-mode 1)
(hyperbole-toggle-messaging 1)
(setq action-key-modeline-function #'hmouse-context-ibuffer-menu)
(put 'hmouse-toggle-bindings 'disabled nil)
(hmouse-add-unshifted-smart-keys)
When inspecting the load path the kotl folder is there!? So seems with this I don't need to do anything more specific for Hyperbole to be set up properly.