Add some details on emacs theme configuration

main
Sergio Alvariño 2 years ago
parent 68a5d5ed05
commit 60ce37b80a

@ -8,7 +8,8 @@
- Check <https://github.com/minad/osm> - Check <https://github.com/minad/osm>
- Check =pdf-tools= - Check =pdf-tools=
- Check =org-presentation= - Check =org-presentation=
- Check ESS and project.el problem - Check ESS and =project.el= problem
- Check =perspective.el=
* Famous init files * Famous init files
- [[https://github.com/zamansky/dot-emacs][The Big Zemansky]] - [[https://github.com/zamansky/dot-emacs][The Big Zemansky]]
@ -283,33 +284,47 @@ See colors in emacs
#+end_src #+end_src
* color-theme * color-theme
#+begin_src emacs-lisp Get some colour in your life
;; (use-package modus-operandi-theme)
(use-package modus-themes)
;; (load-theme 'modus-operandi t)
;; (load-theme 'modus-vivendi t)
(use-package doom-themes - [[https://emacsthemes.com/popular/index.html][Popular themes gallery]]
:config - [[https://github.com/doomemacs/themes/tree/screenshots][Some doom-themes gallery]]
;; 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-theme 'doom-vibrant t)
;; Enable flashing mode-line on errors There is no way in emacs (as far as I know) to find out the active color-theme, I'm currently using doom themes. In particular =doom-vibrant=
(doom-themes-visual-bell-config)
;; Enable custom neotree theme (all-the-icons must be installed!) Try =M-x consult-theme=
(doom-themes-neotree-config)
;; or for treemacs users #+begin_src emacs-lisp
(setq doom-themes-treemacs-theme "doom-colors") ; use the colorful treemacs theme (use-package modus-themes)
(doom-themes-treemacs-config) ;; (load-theme 'modus-operandi t)
;; (load-theme 'modus-vivendi t)
;; Corrects (and improves) org-mode's native fontification. (use-package doom-themes
(doom-themes-org-config) :config
) ;; Global settings (defaults)
#+end_src (setq doom-themes-enable-bold t ; if nil, bold is universally disabled
doom-themes-enable-italic t) ; if nil, italics is universally disabled
(load-theme 'doom-vibrant 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-colors") ; use the colorful treemacs theme
(doom-themes-treemacs-config)
;; Corrects (and improves) org-mode's native fontification.
(doom-themes-org-config)
)
;; (use-package zenburn-theme
;; :config
;; (setq zenburn-use-variable-pitch t) ;; use variable-pitch fonts for some headings and titles
;; (setq zenburn-scale-org-headlines t) ;; scale headings in org-mode
;; (setq zenburn-scale-outline-headlines t) ;; scale headings in outline-mode
;; )
#+end_src
* Completion systems * Completion systems
** Vertico (the choosed one) ** Vertico (the choosed one)

Loading…
Cancel
Save