From 55c0587735265689809591c9f4199f51a8481ad8 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 9 Mar 2021 18:11:57 +0000 Subject: (Emacs)+custom personalised ada-mode The defautl ada-mode requires the installation of many different tools, the compilation of several different systems and much more. I wasn't able to fix all the issues with my installation so I decided to scrap it and make my own. This mode just colourises the buffer so far, but I hope to implement indentation shortly. --- Emacs/.config/emacs/config.org | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Emacs/.config/emacs/config.org') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 326791f..4f9b9b4 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1697,6 +1697,16 @@ use the current buffer?) but it works out. :keymaps 'pdf-view-mode-map "M-g" #'pdfgrep)) #+end_src +** Ada +Check out [[file:ada-mode.el][ada-mode*]], my custom ada-mode that replaces the default one. +This mode just colourises stuff, and uses eglot to do the heavy +lifting. + +#+begin_src emacs-lisp + (load-file (concat user-emacs-directory "ada-mode.el")) + (with-eval-after-load "eglot" + (add-hook 'ada-mode-hook #'eglot)) +#+end_src ** Org *** Org Core Variables Tons of variables for org-mode, including a ton of latex ones. -- cgit v1.2.3-13-gbd6f