aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r--emacs/.emacs.d/init.org37
1 files changed, 36 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 2e4c44f..8052c76 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -264,12 +264,33 @@ To start off, first I need to enable lexical binding.
* Theme
+ Load my personal theme. I sometimes change it to a different theme,
+ but for some reason I always come crawling back to it.
+
#+BEGIN_SRC emacs-lisp
(add-to-list 'custom-theme-load-path
(concat user-emacs-directory "vendor-lisp/yoshi-theme"))
(load-theme 'yoshi :no-confirm)
#+END_SRC
+ Load my personal SVG mode-line theme.
+
+ #+BEGIN_SRC emacs-lisp
+ (require 'svg-mode-line-themes)
+ (require 'oni-smt)
+
+ (smt/enable)
+ (smt/set-theme 'oni-smt)
+ #+END_SRC
+
+ Because SVG mode-line themes doesn't include the box around the
+ mode-line, remove it (my personal theme adds it as padding).
+
+ #+BEGIN_SRC emacs-lisp
+ (set-face-attribute 'mode-line nil :box nil)
+ (set-face-attribute 'mode-line-inactive nil :box nil)
+ #+END_SRC
+
* Diminish
I really don't need to see some of the minor modes.
@@ -466,6 +487,14 @@ To start off, first I need to enable lexical binding.
(add-hook 'minibuffer-setup-hook 'electric-pair-local-mode)
#+END_SRC
+* Libraries
+
+ - [[file:init/oni-shr-init.org][shr]]
+
+ #+BEGIN_SRC emacs-lisp
+ (with-eval-after-load 'shr (load "oni-shr-init"))
+ #+END_SRC
+
* Minor modes
- [[file:init/oni-company-init.org][Company mode]] :: A better auto completion system than auto
@@ -728,9 +757,15 @@ To start off, first I need to enable lexical binding.
- [[file:init/oni-scheme-init.org][scheme-mode]] :: Scheme is an awesome lisp variant.
#+BEGIN_SRC emacs-lisp
- (with-eval-after-load 'scheme-mode (load "oni-scheme-init"))
+ (with-eval-after-load 'scheme (load "oni-scheme-init"))
#+END_SRC
+ - [[file:init/oni-compilation-init.org][compilation-mode]]
+
+ #+BEGIN_SRC emacs-lisp
+ (with-eval-after-load 'compilation (load "oni-compilation-init"))
+ #+END_SRC
+
** Inferior Emacs lisp mode (ielm)
Enable paredit mode.