1ffb42448e
Total load time for 90+ packages without byte-compiling: 3s... amazing ! Thanks to \@jwiegley :-)
7 lines
264 B
EmacsLisp
7 lines
264 B
EmacsLisp
(use-package popwin
|
|
:init
|
|
(progn
|
|
(setq display-buffer-function 'popwin:display-buffer)
|
|
;; use popwin with helm
|
|
(push '("^\*helm.+\*$" :regexp t) popwin:special-display-config)
|
|
(push '("^\*helm-.+\*$" :regexp t) popwin:special-display-config)))
|