-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathui.el
48 lines (37 loc) · 1.08 KB
/
ui.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
(use-package ef-themes
:ensure t)
(use-package modus-themes
:ensure t
:custom
(modus-themes-common-palette-overrides
'(
(border-mode-line-active bg-mode-line-active)
(border-mode-line-inactive bg-mode-line-inactive)
(fringe unspecified)))
:config
(load-theme 'modus-vivendi-deuteranopia t))
(use-package pulsar
:ensure t
:custom
(pulsar-delay 0.055)
(pulsar-face 'pulsar-yellow)
(pulsar-iterations 10)
(pulsar-pulse t)
:hook
((next-error . (pulsar-pulse-line-red pulsar-recenter-top pulsar-reveal-entry)))
:general
("SPC l" '(pulsar-pulse-line :which-key "Pulse Line"))
:config
(pulsar-global-mode 1))
(use-package spacious-padding
:ensure t
:custom
spacious-padding-widths '(:internal-border-width 15
:header-line-width 4
:mode-line-width 2
:tab-width 4
:right-divider-width 30
:scroll-bar-width 8
:fringe-width 8)
:config
(spacious-padding-mode))