Turn of scrollbar and toolbar

I don’t really need them. Nyan-cat works as a scroll bar, and the
toolbar is just eating up screen estate.
This commit is contained in:
Gergely Polonkai 2016-09-26 14:18:55 +02:00
parent bae2537c79
commit f4b6343928
1 changed files with 5 additions and 0 deletions

View File

@ -413,3 +413,8 @@ Version 2016-02-16"
; Bind webjump to a key. Its pretty handy
(global-set-key (kbd "C-x w") 'webjump)
; Turn off scroll bar (thats why Nyan-cat is here) and the toolbar (I
; dont really use it)
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))