From 0c962c57156f8df515359e7ea919b48742a56632 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Mon, 05 Oct 2020 13:05:47 +0000
Subject: [PATCH] Added Nyan cat to mode line to show progress in file

---
 config.org |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/config.org b/config.org
index ccb7836..0ea7887 100644
--- a/config.org
+++ b/config.org
@@ -54,6 +54,13 @@
            (disable-all-themes)
            :config
            (load-theme 'solarized-dark t)))
+        ((eq emacs-theme 'jetbrains-darcula)
+         (use-package jetbrains-darcula-theme
+           :ensure t
+           :init
+           (disable-all-themes)
+           :config
+           (load-theme 'jetbrains-darcula t)))
         ((eq emacs-theme 'none)
          (disable-all-themes)))
 #+END_SRC
@@ -693,6 +700,15 @@
 (setq powerline-default-separator nil)
 #+END_SRC
 
+** Nyan mode
+Use nyan cat as a reference for buffer progression.
+#+BEGIN_SRC emacs-lisp
+  (use-package nyan-mode
+    :ensure t
+    :config
+    (nyan-mode 1))
+#+END_SRC
+
 * Programming tweaks
 ** Yasnippet
 Add snippets, pretty useful.
@@ -740,6 +756,12 @@
     (setq company-minimum-prefix-length 3))
 #+END_SRC
 
+** Version control
+Settings for emacs' own version control system.
+*** Enable version control on the mode line
+#+BEGIN_SRC emacs-lisp
+  (vc-mode)
+#+END_SRC
 ** Magit
 Emacs git client.
 Pretty good and offers fairly decent features.

--
Gitblit v1.9.3