Created
October 20, 2019 12:01
-
-
Save 00-matt/db9699e3b82328b927c323b1b038c767 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun disable-scroll-bars (frame) | |
(modify-frame-parameters frame | |
'((vertical-scroll-bars . nil) | |
(horizontal-scroll-bars . nil)))) | |
(disable-scroll-bars frame-initial-frame) | |
(add-hook 'after-make-frame-functions #'disable-scroll-bars) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment