(Emacs)~move elips files into elisp/ folder

These files were cluttering the main directory, I'd rather just have
my config files here.
This commit is contained in:
2021-07-26 01:48:56 +01:00
parent a6f1a172de
commit ad5cb2b509
5 changed files with 4 additions and 2 deletions

View File

@@ -73,6 +73,8 @@ Load my custom "personal-theme" theme (look at [[file:personal-theme.el][this fi
(use-package custom (use-package custom
:demand t :demand t
:straight nil :straight nil
:init
(setq custom-theme-directory (concat user-emacs-directory "elisp/"))
:config :config
(load-theme 'monokai t)) (load-theme 'monokai t))
#+end_src #+end_src
@@ -2065,7 +2067,7 @@ This mode just colourises stuff, and uses eglot to do the heavy
lifting. lifting.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(load-file (concat user-emacs-directory "ada-mode.el")) (load-file (concat user-emacs-directory "elisp/ada-mode.el"))
(with-eval-after-load "eglot" (with-eval-after-load "eglot"
(add-hook 'ada-mode-hook #'eglot)) (add-hook 'ada-mode-hook #'eglot))
#+end_src #+end_src
@@ -2518,7 +2520,7 @@ Here I configure the REPL for Haskell via the
(display-buffer-at-bottom) (display-buffer-at-bottom)
(window-height . 0.25)) (window-height . 0.25))
:config :config
(load (concat user-emacs-directory "haskell-multiedit.el")) (load (concat user-emacs-directory "elisp/haskell-multiedit.el"))
(+dx/create-toggle-function (+dx/create-toggle-function
+shell/toggle-haskell-repl +shell/toggle-haskell-repl
"*haskell*" "*haskell*"