Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.35 KB

MANUAL_INSTALL.org

File metadata and controls

46 lines (34 loc) · 1.35 KB

Manual installation procedure

Obviously, this package also depends on flycheck, which must be loaded first.

You first need to clone this repository. We recommend you to put it somewhere under your .emacs.d folder.

cd ~/.emacs.d
git clone https://git.umaneti.net/flycheck-grammalecte

On GNU/Linux and Mac OS, you can benefit of a Makefile, which will download for you the last version of Grammalecte and compile the GNU Emacs Lisp package. For that to happen, go to the newly created flycheck-grammalecte folder and enter the make command.

cd flycheck-grammalecte
make

When it’s done, you can add the following line in your GNU Emacs config file:

(load-file "~/.emacs.d/flycheck-grammalecte/flycheck-grammalecte.elc")
(flycheck-grammalecte-setup)

And everything should be fine.

You may want to clean up a bit the Flycheck-grammalecte directory by entering the following command: make clean.

If you cannot or don’t want to use the Makefile, you can also just add the following line to your GNU Emacs config file (please note that in that case, we call the .el file as we have not byte-compiled it):

(load-file "~/.emacs.d/flycheck-grammalecte/flycheck-grammalecte.el")
(flycheck-grammalecte-setup)

Then restart GNU Emacs.