Update config.org
This commit is contained in:
parent
3d3cb07e19
commit
0f4f7579bb
23
config.org
23
config.org
|
|
@ -1,4 +1,4 @@
|
||||||
* Bloxie's Emacs Configuration
|
* Bloxie's Emacs Configuration
|
||||||
** By Curt Spark / Bloxiebird.
|
** By Curt Spark / Bloxiebird.
|
||||||
|
|
||||||
* Introduction
|
* Introduction
|
||||||
|
|
@ -72,7 +72,7 @@ Install the package, enable it and ensure that it always is installed:
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Theming
|
*** Theming
|
||||||
**** Pywal
|
**** Pywal
|
||||||
#+BEGIN_SRC emacs-lisp
|
+BEGIN_SRC emacs-lisp
|
||||||
(use-package ewal
|
(use-package ewal
|
||||||
:init (setq
|
:init (setq
|
||||||
;; Always use built-in palettes:
|
;; Always use built-in palettes:
|
||||||
|
|
@ -115,7 +115,7 @@ Install the package, enable it and ensure that it always is installed:
|
||||||
:after (ewal-spacemacs-themes)
|
:after (ewal-spacemacs-themes)
|
||||||
:config (ewal-evil-cursors-get-colors
|
:config (ewal-evil-cursors-get-colors
|
||||||
:apply t :spaceline t))
|
:apply t :spaceline t))
|
||||||
#+END_SRC
|
+END_SRC
|
||||||
**** Classic
|
**** Classic
|
||||||
The theme for Emacs.
|
The theme for Emacs.
|
||||||
Install and set the theme, ensuring that it is always installed:
|
Install and set the theme, ensuring that it is always installed:
|
||||||
|
|
@ -127,7 +127,10 @@ Old theme for if you'd like to follow Xresources
|
||||||
(load-theme 'xresources t))
|
(load-theme 'xresources t))
|
||||||
+END_SRC
|
+END_SRC
|
||||||
|
|
||||||
+BEGIN_SRC emacs-lisp
|
*** Doom Themes
|
||||||
|
Themes from Doom Emacs
|
||||||
|
Install and set the theme, ensuring that it is always installed:
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package doom-themes
|
(use-package doom-themes
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
|
|
@ -141,14 +144,14 @@ Old theme for if you'd like to follow Xresources
|
||||||
(doom-themes-visual-bell-config)
|
(doom-themes-visual-bell-config)
|
||||||
|
|
||||||
;; Enable custom neotree theme (all-the-icons must be installed!)
|
;; Enable custom neotree theme (all-the-icons must be installed!)
|
||||||
(doom-themes-neotree-config)
|
;; (doom-themes-neotree-config)
|
||||||
;; or for treemacs users
|
;; or for treemacs users
|
||||||
(setq doom-themes-treemacs-theme "doom-colors") ; use the colorful treemacs theme
|
;; (setq doom-themes-treemacs-theme "doom-colors") ; use the colorful treemacs theme
|
||||||
(doom-themes-treemacs-config)
|
;; (doom-themes-treemacs-config)
|
||||||
|
|
||||||
;; Corrects (and improves) org-mode's native fontification.
|
;; Corrects (and improves) org-mode's native fontification.
|
||||||
(doom-themes-org-config)
|
(doom-themes-org-config)
|
||||||
+END_SRC
|
#+END_SRC
|
||||||
*** Custom Modeline
|
*** Custom Modeline
|
||||||
A custom sleek modeline which is also used in Centaur Emacs, Doom Emacs and Spacemacs.
|
A custom sleek modeline which is also used in Centaur Emacs, Doom Emacs and Spacemacs.
|
||||||
|
|
||||||
|
|
@ -205,9 +208,9 @@ Install the package, enable it and ensure that it always is installed:
|
||||||
**** Emacs Dashboard Configuration
|
**** Emacs Dashboard Configuration
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
;; Set the title
|
;; Set the title
|
||||||
(setq dashboard-banner-logo-title "Welcome to Bloxie's Emacs!")
|
(setq dashboard-banner-logo-title "Welcome to Seaspark's Emacs!")
|
||||||
;; Set the banner
|
;; Set the banner
|
||||||
(setq dashboard-startup-banner 'logo)
|
(setq dashboard-startup-banner '1)
|
||||||
;; Value can be
|
;; Value can be
|
||||||
;; 'official which displays the official emacs logo
|
;; 'official which displays the official emacs logo
|
||||||
;; 'logo which displays an alternative emacs logo
|
;; 'logo which displays an alternative emacs logo
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue