To automatically start NinetyFive after Emacs loads, add this to your config file (.emacs)
(add-hook 'emacs-startup-hook #'ninetyfive-start)Ensure NinetyFive is installed to your ~/.emacs.d/*
Add NinetyFive to your ~/.emacs file like below:
(use-package ninetyfive
:load-path "~/.emacs.d/lisp/"
:init
(setq ninetyfive-indexing-mode "yes")
(setq ninetyfive-cache-consent t)
:config
(add-hook 'emacs-startup-hook #'ninetyfive-start))The above configuration allows NinetyFive to index your code for better completions. NinetyFive will cache this consent globally (at ~/.ninetyfive/consent.json) for all extensions. You can opt out of this by setting the cache consent to nil.
- Install MELPA
- Copy
ninetyfive.elto~/.emacs.d/. - Set up your emacs to load and start NinetyFive.
;; Install ninetyfive
(add-to-list 'load-path "~/.emacs.d/")
(load "ninetyfive.el")
;; Start ninetyfive
(add-hook 'emacs-startup-hook #'ninetyfive-start)