Tweak doom modeline and add icons
This commit is contained in:
parent
e9ce63f65e
commit
fc3550fa2d
1 changed files with 24 additions and 3 deletions
|
|
@ -45,6 +45,13 @@
|
||||||
:bind
|
:bind
|
||||||
("M-o" . ace-window))
|
("M-o" . ace-window))
|
||||||
|
|
||||||
|
(use-package all-the-icons
|
||||||
|
:if window-system)
|
||||||
|
|
||||||
|
(use-package all-the-icons-dired
|
||||||
|
:if window-system
|
||||||
|
:hook dired-mode)
|
||||||
|
|
||||||
(use-package avy
|
(use-package avy
|
||||||
:bind
|
:bind
|
||||||
(("C-." . avy-goto-char-timer)
|
(("C-." . avy-goto-char-timer)
|
||||||
|
|
@ -91,7 +98,22 @@
|
||||||
(setq dired-dwim-target t))
|
(setq dired-dwim-target t))
|
||||||
|
|
||||||
(use-package doom-modeline
|
(use-package doom-modeline
|
||||||
:hook after-init)
|
:if window-system
|
||||||
|
:hook after-init
|
||||||
|
:config
|
||||||
|
;; (if (facep 'mode-line-active)
|
||||||
|
;; (set-face-attribute 'mode-line-active nil :family "Iosevka Comfy" :height 200)
|
||||||
|
;; (set-face-attribute 'mode-line nil :family "Iosevka Comfy" :height 130))
|
||||||
|
;; (set-face-attribute 'mode-line-inactive nil :family "Iosevka Comfy" :height 130)
|
||||||
|
|
||||||
|
(setq doom-modeline-modal nil
|
||||||
|
doom-modeline-height 28
|
||||||
|
doom-modeline-time-icon nil
|
||||||
|
doom-modeline-major-mode-icon nil
|
||||||
|
doom-modeline-percent-position nil
|
||||||
|
doom-modeline-buffer-encoding nil
|
||||||
|
doom-modeline-bar-width 1
|
||||||
|
doom-modeline-major-mode-color-icon nil))
|
||||||
|
|
||||||
(use-package dumb-jump
|
(use-package dumb-jump
|
||||||
:config
|
:config
|
||||||
|
|
@ -105,8 +127,7 @@
|
||||||
(1 . (variable-pitch light 1.5))
|
(1 . (variable-pitch light 1.5))
|
||||||
(2 . (variable-pitch semibold 1.2))
|
(2 . (variable-pitch semibold 1.2))
|
||||||
(t . (variable-pitch semibold 1.0))))
|
(t . (variable-pitch semibold 1.0))))
|
||||||
(setq ef-themes-mixed-fonts t
|
(setq ef-themes-mixed-fonts t)
|
||||||
ef-themes-variable-pitch-ui t)
|
|
||||||
(mapc #'disable-theme custom-enabled-themes)
|
(mapc #'disable-theme custom-enabled-themes)
|
||||||
(load-theme 'ef-winter :no-confirm))
|
(load-theme 'ef-winter :no-confirm))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue