mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Add party parrot segment
This commit is contained in:
parent
7d5308f1bb
commit
f63924142c
2 changed files with 13 additions and 2 deletions
|
@ -36,6 +36,7 @@ The `doom-modeline` was designed for minimalism, and offers:
|
|||
- An indicator for `LSP` state
|
||||
- An indicator for github notifications
|
||||
- An indicator for buffer position which is compatible with `nyan-mode`
|
||||
- An indicator for party parrot
|
||||
- Truncated file name, file icon, buffer state and project name in buffer
|
||||
information segment, which is compatible with `projectile` and `project`
|
||||
|
||||
|
|
|
@ -55,6 +55,7 @@
|
|||
;; - An indicator for LSP state
|
||||
;; - An indicator for github notifications
|
||||
;; - An indicator for buffer position which is compatible with nyan-mode
|
||||
;; - An indicator for party parrot
|
||||
;; - Truncated file name, file icon, buffer state and project name in buffer
|
||||
;; information segment, which is compatible with projectile and project
|
||||
;;
|
||||
|
@ -238,6 +239,7 @@ It returns a file name which can be used directly as argument of
|
|||
(declare-function magit-toplevel 'magit-git)
|
||||
(declare-function minions-minor-modes-menu 'minions)
|
||||
(declare-function nyan-create 'nyan-mode)
|
||||
(declare-function parrot-create 'parrot)
|
||||
(declare-function persp-add-buffer 'persp-mode)
|
||||
(declare-function persp-contain-buffer-p 'persp-mode)
|
||||
(declare-function persp-remove-buffer 'persp-mode)
|
||||
|
@ -1741,6 +1743,14 @@ mouse-1: Display Line and Column Mode Menu"
|
|||
mouse-face (:box 1)
|
||||
local-map ,mode-line-column-line-number-mode-map))))
|
||||
|
||||
;;
|
||||
;; party parrot
|
||||
;;
|
||||
(doom-modeline-def-segment parrot
|
||||
"The party parrot animated icon. Requires `parrot-mode' to be enabled."
|
||||
(when (bound-and-true-p parrot-mode)
|
||||
(concat " " (parrot-create) " ")))
|
||||
|
||||
;;
|
||||
;; evil-state
|
||||
;;
|
||||
|
@ -1956,7 +1966,7 @@ mouse-1: Toggle Debug on Quit"
|
|||
;;
|
||||
|
||||
(doom-modeline-def-modeline 'main
|
||||
'(bar workspace-number window-number evil-state god-state ryo-modal xah-fly-keys matches " " buffer-info remote-host buffer-position " " selection-info)
|
||||
'(bar workspace-number window-number evil-state god-state ryo-modal xah-fly-keys matches " " buffer-info remote-host buffer-position parrot " " selection-info)
|
||||
'(misc-info persp-name lsp github debug minor-modes input-method buffer-encoding major-mode process vcs checker))
|
||||
|
||||
(doom-modeline-def-modeline 'minimal
|
||||
|
@ -1964,7 +1974,7 @@ mouse-1: Toggle Debug on Quit"
|
|||
'(media-info major-mode))
|
||||
|
||||
(doom-modeline-def-modeline 'special
|
||||
'(bar window-number evil-state god-state ryo-modal xah-fly-keys matches " " buffer-info-simple buffer-position " " selection-info)
|
||||
'(bar window-number evil-state god-state ryo-modal xah-fly-keys matches " " buffer-info-simple buffer-position parrot " " selection-info)
|
||||
'(misc-info lsp debug minor-modes input-method buffer-encoding major-mode process checker))
|
||||
|
||||
(doom-modeline-def-modeline 'project
|
||||
|
|
Loading…
Reference in a new issue