2019-07-22 22:49:27 +02:00
|
|
|
;;; ui/hydra/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
2019-08-29 17:16:56 +08:00
|
|
|
(use-package! hydra-examples
|
|
|
|
:commands (hydra-move-splitter-up
|
|
|
|
hydra-move-splitter-down
|
|
|
|
hydra-move-splitter-right
|
|
|
|
hydra-move-splitter-left))
|
|
|
|
|
2019-07-22 22:49:27 +02:00
|
|
|
;;;###package hydra
|
2019-09-15 18:50:46 +08:00
|
|
|
(setq lv-use-separator t)
|
2019-11-03 23:04:06 +01:00
|
|
|
|
|
|
|
(after! hydra
|
|
|
|
(defadvice! +hydra/inhibit-window-switch-hooks-a (orig-fn)
|
|
|
|
:around #'lv-window
|
|
|
|
(let ((doom-inhibit-switch-window-hooks t))
|
|
|
|
(funcall orig-fn))))
|