Skip to content

Commit ad8a44d

Browse files
committed
feat(ui): initial support for spacious-padding
1 parent b5c958f commit ad8a44d

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

core/me-core-ui.el

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,29 @@
6262
:hook (minemacs-after-startup . doom-modeline-mode)
6363
:custom
6464
(doom-modeline-height 28)
65-
(doom-modeline-bar-width 8)
65+
(doom-modeline-bar-width 1)
6666
(doom-modeline-time-icon nil)
6767
(doom-modeline-buffer-encoding 'nondefault)
6868
(doom-modeline-unicode-fallback t)
6969
(doom-modeline-enable-word-count t)
70-
(doom-modeline-continuous-word-count-modes '(markdown-mode gfm-mode org-mode rst-mode latex-mode tex-mode text-mode)))
70+
(doom-modeline-continuous-word-count-modes '(markdown-mode gfm-mode org-mode rst-mode latex-mode tex-mode text-mode))
71+
:custom-face
72+
;; Hide the modeline bar
73+
(doom-modeline-bar ((t (:inherit mode-line :background nil)))))
74+
75+
(use-package spacious-padding
76+
:straight t
77+
:hook (minemacs-after-startup . spacious-padding-mode)
78+
:custom
79+
(spacious-padding-subtle-mode-line t)
80+
(spacious-padding-widths '(:internal-border-width 15
81+
:right-divider-width 20
82+
:header-line-width 4
83+
:mode-line-width 1
84+
:tab-width 3
85+
:scroll-bar-width 8
86+
:left-fringe-width 8
87+
:right-fringe-width 13)))
7188

7289

7390
(provide 'me-core-ui)

early-init.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
(mouse-color . "blue")
2525
(left-fringe . 8)
2626
(right-fringe . 13)
27-
(internal-border-width . 10)
27+
(internal-border-width . 15)
2828
(fullscreen . maximized))
2929
;; Explicitly set modes disabled in `default-frame-alist' to nil
3030
tool-bar-mode nil

0 commit comments

Comments
 (0)