Disable scroll-bar-mode

This commit is contained in:
Evie Litherland-Smith 2024-10-28 09:56:37 +00:00
parent b54a4bb9e5
commit 69652e34d8

View file

@ -97,6 +97,7 @@ Configure the look and feel of Emacs
(global-prettify-symbols-mode +1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
#+end_src
*** Theme and Icons
#+begin_src emacs-lisp
@ -148,12 +149,10 @@ Configure the look and feel of Emacs
(require 'server)
(add-hook 'after-init-hook
(lambda () (when (display-graphic-p)
(my/load-theme-and-configure)
(set-window-scroll-bars (minibuffer-window) nil nil))))
(my/load-theme-and-configure))))
(add-hook 'server-after-make-frame-hook
(lambda () (when (display-graphic-p)
(my/load-theme-and-configure)
(set-window-scroll-bars (minibuffer-window) nil nil))))
(my/load-theme-and-configure))))
(add-to-list 'package-selected-packages 'nerd-icons)
(use-package nerd-icons