mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Another set of fixes to the minimap as suggested by @hlissner. - Changed the use-package to :defer t - Updated the README.org and removed the Hacks section - Alphabetized the init.example.el list
10 lines
238 B
EmacsLisp
10 lines
238 B
EmacsLisp
;;; ui/minimap/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! minimap
|
|
:defer t
|
|
:config
|
|
(setq minimap-window-location 'right
|
|
minimap-update-delay 0
|
|
minimap-width-fraction 0.09
|
|
minimap-minimum-width 15))
|