-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththeme.el
67 lines (53 loc) · 1.88 KB
/
theme.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
(require 'use-package)
(use-package color-theme-modern
:straight t
:config (load-theme 'snowish :no-confirm))
;; (use-package catppuccin-theme
;; :straight t
;; :custom catppuccin-flavor 'mocha
;; :config (load-theme 'catppuccin t))
;; (use-package organic-green-theme
;; :straight t
;; :config (load-theme 'organic-green t))
;; (use-package pastelmac-theme
;; :straight t
;; :config (load-theme 'pastelmac t))
;; (use-package color-theme-sanityinc-tomorrow
;; :straight t
;; :config (load-theme 'sanityinc-tomorrow-blue :no-confirm))
;; (use-package solarized-theme
;; :straight t)
;; (use-package exotica-theme
;; :straight t
;; :config
;; (load-theme 'exotica t))
;; (use-package jazz-theme
;; :straight t)
;; (load-theme 'adwaita t)
(use-package doom-modeline
:straight t
:init (doom-modeline-mode t))
(use-package all-the-icons
:straight t)
;; (setq-default cursor-type 'box)
(setq-default cursor-type 'bar)
(fringe-mode '(7 . 0))
(scroll-bar-mode -1)
(unless (eq system-type 'darwin)
(menu-bar-mode -1))
(tool-bar-mode -1)
(toggle-scroll-bar -1)
(display-battery-mode -1)
(display-time-mode +1)
(custom-set-faces
'(rainbow-delimiters-depth-1-face ((t (:foreground "systemTealColor"))))
'(rainbow-delimiters-depth-2-face ((t (:foreground "Brown"))))
'(rainbow-delimiters-depth-3-face ((t (:foreground "Blue"))))
'(rainbow-delimiters-depth-4-face ((t (:foreground "Orange"))))
'(rainbow-delimiters-depth-5-face ((t (:foreground "Purple"))))
'(rainbow-delimiters-depth-6-face ((t (:foreground "dark green"))))
'(rainbow-delimiters-depth-9-face ((t (:foreground "indian red"))))
(cond
((eq system-type 'darwin) '(default ((t (:family "Menlo" :foundry "nil" :slant normal :weight regular :height 130 :width normal)))))
(t '(default ((t (:family "MesloLGS NF" :foundry "nil" :slant normal :weight regular :height 130 :width normal)))))))
(provide 'theme)