diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-16 11:49:44 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-16 11:49:44 +0100 |
commit | 9315f2fb9a69f6b3b9aa475923251c1ee94f4732 (patch) | |
tree | 3fb73fdf2c1555ae68dc21e189bbb578abe5a486 | |
parent | 66e45a6de1f8d1494b56a9538badbb3ec65e51f6 (diff) |
Disable scroll bars.
-rw-r--r-- | init.org | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -94,8 +94,9 @@ Here are a few more simple tweaks: ;; display tool tips in echo area only (tooltip-mode -1) -(tool-bar-mode 0) -(menu-bar-mode 0) +(tool-bar-mode -1) +(menu-bar-mode -1) +(scroll-bar-mode -1) ;; by default Emacs will only resize the frame line by line (setq frame-resize-pixelwise t) |