all that for a banner
This commit is contained in:
parent
fefbcd984d
commit
07345e54b1
3 changed files with 10 additions and 3 deletions
3
emacs/.gitignore
vendored
3
emacs/.gitignore
vendored
|
@ -1,5 +1,4 @@
|
||||||
*
|
*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
!init.el
|
!init.el
|
||||||
!default.txt
|
!banner.txt
|
||||||
!custom.el
|
|
||||||
|
|
|
@ -69,6 +69,10 @@
|
||||||
(evil-collection-init))
|
(evil-collection-init))
|
||||||
|
|
||||||
;; Theming
|
;; Theming
|
||||||
|
(use-package page-break-lines
|
||||||
|
:ensure t
|
||||||
|
:demand t)
|
||||||
|
|
||||||
(use-package doom-themes
|
(use-package doom-themes
|
||||||
:config
|
:config
|
||||||
(setq doom-themes-enable-bold t
|
(setq doom-themes-enable-bold t
|
||||||
|
@ -81,20 +85,24 @@
|
||||||
:hook (dired-mode . (lambda () (all-the-icons-dired-mode t))))
|
:hook (dired-mode . (lambda () (all-the-icons-dired-mode t))))
|
||||||
(use-package dashboard
|
(use-package dashboard
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:after page-break-lines
|
||||||
:init
|
:init
|
||||||
(setq dashboard-set-heading-icons t)
|
(setq dashboard-set-heading-icons t)
|
||||||
(setq dashboard-set-file-icons t)
|
(setq dashboard-set-file-icons t)
|
||||||
(setq dashboard-center-content t)
|
(setq dashboard-center-content t)
|
||||||
|
(setq dashboard-vertically-center-content t)
|
||||||
(setq dashboard-startupify-list '(dashboard-insert-banner
|
(setq dashboard-startupify-list '(dashboard-insert-banner
|
||||||
dashboard-insert-banner-title
|
dashboard-insert-banner-title
|
||||||
dashboard-insert-newline
|
dashboard-insert-newline
|
||||||
dashboard-insert-items
|
dashboard-insert-items
|
||||||
dashboard-insert-newline))
|
dashboard-insert-newline))
|
||||||
(setq dashboard-projects-backend 'projectile)
|
(setq dashboard-projects-backend 'projectile)
|
||||||
(setq dashboard-startup-banner "~/.config/emacs/default.txt")
|
(setq dashboard-startup-banner "~/.config/emacs/banner.txt")
|
||||||
(setq dashboard-banner-logo-title "✨ M'illumino d'immenso ✨")
|
(setq dashboard-banner-logo-title "✨ M'illumino d'immenso ✨")
|
||||||
(setq dashboard-items '((projects . 5)
|
(setq dashboard-items '((projects . 5)
|
||||||
(recents . 5)))
|
(recents . 5)))
|
||||||
|
:custom
|
||||||
|
(dashboard-page-separator "\n\f\n")
|
||||||
:config
|
:config
|
||||||
(dashboard-setup-startup-hook))
|
(dashboard-setup-startup-hook))
|
||||||
(setq initial-buffer-choice (lambda () (get-buffer-create dashboard-buffer-name)))
|
(setq initial-buffer-choice (lambda () (get-buffer-create dashboard-buffer-name)))
|
||||||
|
|
Loading…
Reference in a new issue