mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Removed the custom faces from the module in favor of setting them in doom-themes itself https://github.com/hlissner/emacs-doom-themes/pull/467
10 lines
256 B
EmacsLisp
10 lines
256 B
EmacsLisp
;;; ui/minimap/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! minimap
|
|
:hook doom-load-theme-hook
|
|
:config
|
|
(setq minimap-window-location 'right
|
|
minimap-update-delay 0
|
|
minimap-width-fraction 0.09
|
|
minimap-minimum-width 15))
|