|
|
|
@ -8,7 +8,8 @@
|
|
|
|
|
- Check <https://github.com/minad/osm>
|
|
|
|
|
- Check =pdf-tools=
|
|
|
|
|
- Check =org-presentation=
|
|
|
|
|
- Check ESS and project.el problem
|
|
|
|
|
- Check ESS and =project.el= problem
|
|
|
|
|
- Check =perspective.el=
|
|
|
|
|
|
|
|
|
|
* Famous init files
|
|
|
|
|
- [[https://github.com/zamansky/dot-emacs][The Big Zemansky]]
|
|
|
|
@ -283,33 +284,47 @@ See colors in emacs
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
* color-theme
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
;; (use-package modus-operandi-theme)
|
|
|
|
|
(use-package modus-themes)
|
|
|
|
|
;; (load-theme 'modus-operandi t)
|
|
|
|
|
;; (load-theme 'modus-vivendi t)
|
|
|
|
|
Get some colour in your life
|
|
|
|
|
|
|
|
|
|
(use-package doom-themes
|
|
|
|
|
: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-theme 'doom-vibrant t)
|
|
|
|
|
- [[https://emacsthemes.com/popular/index.html][Popular themes gallery]]
|
|
|
|
|
- [[https://github.com/doomemacs/themes/tree/screenshots][Some doom-themes gallery]]
|
|
|
|
|
|
|
|
|
|
;; Enable flashing mode-line on errors
|
|
|
|
|
(doom-themes-visual-bell-config)
|
|
|
|
|
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=
|
|
|
|
|
|
|
|
|
|
;; Enable custom neotree theme (all-the-icons must be installed!)
|
|
|
|
|
(doom-themes-neotree-config)
|
|
|
|
|
Try =M-x consult-theme=
|
|
|
|
|
|
|
|
|
|
;; or for treemacs users
|
|
|
|
|
(setq doom-themes-treemacs-theme "doom-colors") ; use the colorful treemacs theme
|
|
|
|
|
(doom-themes-treemacs-config)
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
(use-package modus-themes)
|
|
|
|
|
;; (load-theme 'modus-operandi t)
|
|
|
|
|
;; (load-theme 'modus-vivendi t)
|
|
|
|
|
|
|
|
|
|
;; Corrects (and improves) org-mode's native fontification.
|
|
|
|
|
(doom-themes-org-config)
|
|
|
|
|
)
|
|
|
|
|
#+end_src
|
|
|
|
|
(use-package doom-themes
|
|
|
|
|
: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-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
|
|
|
|
|
** Vertico (the choosed one)
|
|
|
|
|