Skip to content

Instantly share code, notes, and snippets.

@00-matt
Created October 20, 2019 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 00-matt/db9699e3b82328b927c323b1b038c767 to your computer and use it in GitHub Desktop.
Save 00-matt/db9699e3b82328b927c323b1b038c767 to your computer and use it in GitHub Desktop.
(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