(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.
This commit is contained in:
2021-03-09 18:11:57 +00:00
parent 5d625c8068
commit 55c0587735
2 changed files with 76 additions and 0 deletions

View File

@@ -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.