30 lines
573 B
Org Mode
30 lines
573 B
Org Mode
#+TITLE: Unused Other Configurations
|
|
|
|
* Unused Miscellanous Configs
|
|
Where config files go unused, but not forgotten.
|
|
For may that one day come, where they will be useful again
|
|
|
|
** Fcitx
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
fcitx
|
|
(use-package fcitx
|
|
:config
|
|
(fcitx-aggressive-setup)
|
|
(setq fcitx-use-dbus t))
|
|
|
|
#+END_SRC
|
|
|
|
** EIN
|
|
IPython notebook support mode for emacs
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
(use-package ein
|
|
:config
|
|
(org-babel-do-load-languages
|
|
'org-babel-load-languages '((emacs-lisp . nil) (ein . t))))
|
|
|
|
#+end_src
|