emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit b0460ab488915de76f738a7422d6c9aa69b12586
parent 5817a98d1e3f11c7a0820ecdf7cea9160f79dd14
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sat, 24 Feb 2018 21:54:48 -0800

Turn off scroll bar, instead of toggling it.

Diffstat:
MREADME.org | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.org b/README.org
@@ -250,7 +250,7 @@ Hide menu, scrollbar and toolbars.
 
 #+BEGIN_SRC emacs-lisp
   (menu-bar-mode -1)
-  (toggle-scroll-bar -1)
+  (scroll-bar-mode -1)
   (tool-bar-mode -1)
 #+END_SRC