Update emacs.org
This commit is contained in:
parent
e7d29a03af
commit
f7b71c1edb
1 changed files with 18 additions and 21 deletions
|
@ -193,28 +193,25 @@ https://github.com/seagle0128/.emacs.d
|
||||||
#+end_src
|
#+end_src
|
||||||
** Custom Themes
|
** Custom Themes
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
;; (use-package doom-themes
|
(use-package doom-themes
|
||||||
;; :straight t
|
|
||||||
;; :ensure t
|
|
||||||
;; :config
|
|
||||||
;; ;; Global settings (defaults)
|
|
||||||
;; (setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
|
||||||
;; doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
|
||||||
;; ;; load the theme
|
|
||||||
;; (load-theme 'doom-peacock t)
|
|
||||||
|
|
||||||
;; ;; Enable flashing mode-line on errors
|
|
||||||
;; (doom-themes-visual-bell-config))
|
|
||||||
;; ;; Enable custom neotree theme (all-the-icons must be installed!)
|
|
||||||
;; ;;(doom-themes-neotree-config)
|
|
||||||
;; ;; or for treemacs users
|
|
||||||
;; ;;(setq doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme
|
|
||||||
;; ;;(doom-themes-treemacs-config)
|
|
||||||
;; ;; Corrects (and improves) org-mode's native fontification.
|
|
||||||
;; ;;(doom-themes-org-config))
|
|
||||||
(use-package timu-macos-theme
|
|
||||||
:straight t
|
:straight t
|
||||||
:init (progn (load-theme 'timu-macos)))
|
:ensure t
|
||||||
|
:config
|
||||||
|
;; Global settings (defaults)
|
||||||
|
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
||||||
|
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
||||||
|
;; load the theme
|
||||||
|
(load-theme 'doom-sourcerer t)
|
||||||
|
|
||||||
|
;; Enable flashing mode-line on errors
|
||||||
|
(doom-themes-visual-bell-config))
|
||||||
|
;; Enable custom neotree theme (all-the-icons must be installed!)
|
||||||
|
;;(doom-themes-neotree-config)
|
||||||
|
;; or for treemacs users
|
||||||
|
;;(setq doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme
|
||||||
|
;;(doom-themes-treemacs-config)
|
||||||
|
;; Corrects (and improves) org-mode's native fontification.
|
||||||
|
;;(doom-themes-org-config))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Nerd-Fonts (All of the Icons doesnt work for me)
|
** Nerd-Fonts (All of the Icons doesnt work for me)
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
Loading…
Reference in a new issue