Use minimap for scrollbar

This commit is contained in:
2026-01-22 13:58:03 +01:00
parent 519de17eaa
commit 413ad5305a

11
init.el
View File

@@ -54,9 +54,16 @@
(menu-bar-mode -1)
(tooltip-mode -1)
(fringe-mode -1)
(scroll-bar-mode -1)
;; The minimap gives a much better scrolling experience
(use-package minimap
:straight t
:config
(minimap-mode)
(setq minimap-window-location 'right)
(setq minimap-width-fraction 0.10))
(scroll-bar-mode t)
(set-window-scroll-bars (minibuffer-window) nil nil nil nil 1)
;; Font settings
(set-face-attribute 'default nil :font "Iosevka Fixed SS05-12")