diff options
| author | bard <[email protected]> | 2024-05-02 15:49:12 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-05-02 15:49:12 -0400 |
| commit | d0b53a497b22f61cf9d50825f136df65bc2a1efd (patch) | |
| tree | 5b0f8f6f300b200b3896ac4da1e4630df6acca0b /bard-emacs-modules | |
| parent | e51c6ca136edb6390cb74ed6b5a2d57fd0e7d21b (diff) | |
old ada-mode load path tweak
Diffstat (limited to 'bard-emacs-modules')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-prog.el | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/bard-emacs-modules/bard-emacs-prog.el b/bard-emacs-modules/bard-emacs-prog.el index 332b069..f8b1fe4 100644 --- a/bard-emacs-modules/bard-emacs-prog.el +++ b/bard-emacs-modules/bard-emacs-prog.el @@ -64,6 +64,10 @@ (:map cider-repl-mode-map ("C-<tab>" . cider-switch-to-last-clojure-buffer))) +(use-package sly + :config + (setq inferior-lisp-program (executable-find "sbcl"))) + (use-package haskell-mode) (use-package flycheck @@ -94,9 +98,12 @@ :config (define-key global-map (kbd "C-c g") #'magit)) -(use-package magit-todos - :config - (magit-todos-mode 1)) +(use-package ada-mode + :after dired + :load-path "~/.emacs.d/old-ada/" + :bind + (:map ada-mode-map + ("C-j" . dired-jump))) (provide 'bard-emacs-prog) ;;; bard-emacs-prog.el ends here |
