From f4b63439285d4b4b0ab3706e3d88cf4a0a9c594f Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 26 Sep 2016 14:18:55 +0200 Subject: [PATCH] Turn of scrollbar and toolbar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I don’t really need them. Nyan-cat works as a scroll bar, and the toolbar is just eating up screen estate. --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index 40bcde5..9ea5117 100644 --- a/init.el +++ b/init.el @@ -413,3 +413,8 @@ Version 2016-02-16" ; Bind webjump to a key. It’s pretty handy (global-set-key (kbd "C-x w") 'webjump) + +; Turn off scroll bar (that’s why Nyan-cat is here) and the toolbar (I +; don’t really use it) +(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1)) +(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))