2017-10-08 23:34:25 +02:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; ui/window-select/packages.el
|
|
|
|
|
|
|
|
(cond ((featurep! +switch-window)
|
2018-05-18 01:21:09 +02:00
|
|
|
;; Install switch-window if the user indicated the '+switch-window'
|
|
|
|
;; module flag
|
2017-10-08 23:34:25 +02:00
|
|
|
(package! switch-window))
|
|
|
|
((or (featurep! +ace-window) t)
|
2018-05-18 01:21:09 +02:00
|
|
|
;; Install ace-window if the user selects the flag '+ace-window' or by
|
|
|
|
;; default ... if the user did not specify a module flag
|
2017-10-08 23:34:25 +02:00
|
|
|
(package! ace-window)))
|
|
|
|
|