Disable the scroll bar only in GUI mode

This commit is contained in:
Sameer Rahmani 2023-07-21 10:45:13 +01:00
parent e754a9c2dd
commit ac9d50256c
Signed by: lxsameer
GPG Key ID: B0A4AF28AB9FD90B
1 changed files with 4 additions and 1 deletions

View File

@ -327,8 +327,11 @@ https://emacsthemes.com/themes/badwolf-theme.html"
;; Global configurations
(tool-bar-mode -1)
(scroll-bar-mode -1)
(menu-bar-mode -1)
(when (display-graphic-p)
(scroll-bar-mode -1))
(column-number-mode t)
(show-paren-mode t)
(electric-pair-mode 1)