no android suport :(
This commit is contained in:
parent
ada1e1f761
commit
4c4b1713dc
1 changed files with 15 additions and 12 deletions
|
@ -122,18 +122,21 @@
|
||||||
:config
|
:config
|
||||||
(evil-collection-init))
|
(evil-collection-init))
|
||||||
|
|
||||||
(use-package centaur-tabs
|
(if (eq system-type 'android)
|
||||||
:demand
|
(message "Android device, ignoring centaur-tabs") ;; Android
|
||||||
:config
|
(progn ;; Everywhere else
|
||||||
(centaur-tabs-mode t)
|
(use-package centaur-tabs
|
||||||
:bind
|
:demand
|
||||||
("C-<iso-lefttab>" . centaur-tabs-backward)
|
:config
|
||||||
("C-<tab>" . centaur-tabs-forward)
|
(centaur-tabs-mode t)
|
||||||
:hook ((dashboard-mode . centaur-tabs-local-mode)
|
:bind
|
||||||
(pdf-view-mode . centaur-tabs-local-mode)))
|
("C-<iso-lefttab>" . centaur-tabs-backward)
|
||||||
(setq centaur-tabs-cycle-scope 'tabs)
|
("C-<tab>" . centaur-tabs-forward)
|
||||||
(setq centaur-tabs-set-modified-marker t)
|
:hook ((dashboard-mode . centaur-tabs-local-mode)
|
||||||
(setq centaur-tabs-modified-marker "*")
|
(pdf-view-mode . centaur-tabs-local-mode)))
|
||||||
|
(setq centaur-tabs-cycle-scope 'tabs)
|
||||||
|
(setq centaur-tabs-set-modified-marker t)
|
||||||
|
(setq centaur-tabs-modified-marker "*")))
|
||||||
|
|
||||||
(defun my/hide-modeline ()
|
(defun my/hide-modeline ()
|
||||||
(setq-local mode-line-format nil))
|
(setq-local mode-line-format nil))
|
||||||
|
|
Loading…
Reference in a new issue