aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/config.org
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-03-09 18:11:57 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-03-09 18:11:57 +0000
commit55c0587735265689809591c9f4199f51a8481ad8 (patch)
treecfbbad5f5c2deca157ac87087eb804186d589527 /Emacs/.config/emacs/config.org
parent5d625c806871b9392e39d01f5592e22504ceae03 (diff)
downloaddotfiles-55c0587735265689809591c9f4199f51a8481ad8.tar.gz
dotfiles-55c0587735265689809591c9f4199f51a8481ad8.tar.bz2
dotfiles-55c0587735265689809591c9f4199f51a8481ad8.zip
(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.
Diffstat (limited to 'Emacs/.config/emacs/config.org')
-rw-r--r--Emacs/.config/emacs/config.org10
1 files changed, 10 insertions, 0 deletions
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.