Remove scroll, tool and menu bar

This commit is contained in:
laurensmiers 2017-08-21 17:56:22 +02:00
parent 384dbc66a9
commit e825b8b2d4

View file

@ -10,6 +10,11 @@
;; show column numbers ;; show column numbers
(setq column-number-mode 1) (setq column-number-mode 1)
;; Remove scroll-bar, tool-bar and menu-bar
(scroll-bar-mode -1)
(tool-bar-mode -1)
(menu-bar-mode -1)
;; set appearance of a tab that is represented by 4 spaces ;; set appearance of a tab that is represented by 4 spaces
(setq-default tab-width 4) (setq-default tab-width 4)