CHange theme
This commit is contained in:
parent
6363e13da4
commit
9dc04dae6d
1 changed files with 24 additions and 4 deletions
28
config.org
28
config.org
|
@ -212,14 +212,34 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(add-hook 'org-mode-hook 'org-bullets-mode))
|
(add-hook 'org-mode-hook 'org-bullets-mode))
|
||||||
(setq org-hide-emphasis-markers t)
|
(setq org-hide-emphasis-markers t)
|
||||||
(setq org-src-window-setup 'current-window))
|
(setq org-src-window-setup 'current-window))
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
|
(let* ((variable-tuple
|
||||||
|
(cond ((x-list-fonts "IBM Plex Mono") '(:font "IBM Plex Mono"))
|
||||||
|
((x-list-fonts "Source Sans Pro") '(:font "IBM Plex Mono"))
|
||||||
|
((x-list-fonts "Lucida Grande") '(:font "IBM Plex Mono"))
|
||||||
|
((x-list-fonts "IBM Plex Mono") '(:font "IBM Plex Mono"))
|
||||||
|
((x-family-fonts "IBM Plex Mono") '(:family "IBM Plex Mono"))
|
||||||
|
(nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro."))))
|
||||||
|
(base-font-color (face-foreground 'default nil 'default))
|
||||||
|
(headline `(:inherit default :weight bold :foreground ,base-font-color)))
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'user
|
||||||
|
`(org-level-8 ((t (,@headline ,@variable-tuple))))
|
||||||
|
`(org-level-7 ((t (,@headline ,@variable-tuple))))
|
||||||
|
`(org-level-6 ((t (,@headline ,@variable-tuple))))
|
||||||
|
`(org-level-5 ((t (,@headline ,@variable-tuple))))
|
||||||
|
`(org-level-4 ((t (,@headline ,@variable-tuple :height 1.1))))
|
||||||
|
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1))))
|
||||||
|
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.2))))
|
||||||
|
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.3))))
|
||||||
|
`(org-document-title ((t (,@headline ,@variable-tuple :height 2.0 :underline nil))))))
|
||||||
|
#+END_SRC
|
||||||
** Theme
|
** Theme
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package humanoid-themes
|
(use-package cyberpunk-theme
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(load-theme 'humanoid-dark t))
|
:init (load-theme 'cyberpunk t))
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Relative lines
|
** Relative lines
|
||||||
|
|
Loading…
Add table
Reference in a new issue