[Emacs] Disable a few things that don't set up cleanly

This commit is contained in:
Ivan Malison 2021-08-21 19:07:31 +00:00
parent 910783f309
commit 90cd014561

View File

@ -3166,7 +3166,6 @@ Intero seems to be causing hangs, so it has been disabled
`((python . t) `((python . t)
(ruby . t) (ruby . t)
(octave . t) (octave . t)
(sqlite . t)
(plantuml . t) (plantuml . t)
,@added-modes)))) ,@added-modes))))
@ -3848,6 +3847,7 @@ alphanumeric characters only."
*** forge *** forge
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package forge (use-package forge
:disabled t
:after magit) :after magit)
#+end_src #+end_src
*** magithub *** magithub
@ -4231,6 +4231,7 @@ crux-reopen-as-root-mode makes it so that any file owned by root will automatica
** erc ** erc
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package erc (use-package erc
:disabled t
:commands erc :commands erc
:config :config
(progn (progn
@ -4852,7 +4853,8 @@ I've disabled perspective because I just don't use it much.
** groovy-mode ** groovy-mode
This also adds syntax highlighting for gradle This also adds syntax highlighting for gradle
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package groovy-mode) (use-package groovy-mode
:disabled t)
#+END_SRC #+END_SRC
** jsx-mode ** jsx-mode
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp