Update emacs.org

This commit is contained in:
Sako 2023-12-23 12:28:09 +04:00 committed by GitHub
parent d6e5c718b8
commit a10510ff97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -537,6 +537,7 @@ Should make startup faster, taken from doom-emacs
(setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")))
(setq dashboard-center-content t)
(setq dashboard-projects-backend 'projectile)
(setq dashboard-startup-banner "~/.emacs.d/dashboard.png")
(setq dashboard-footer-messages '("i think i have emacs pinky"
"why are we still using lisp again?"
"why is this running on 1/16 threads?!?!?"
@ -554,7 +555,7 @@ Should make startup faster, taken from doom-emacs
(projects . 3)
(agenda . 5)))
(setq dashboard-image-banner-max-height 250)
(setq dashboard-image-banner-max-height 200)
(setq dashboard-image-banner-max-width 500)
(setq dashboard-page-separator "\n\n")
@ -762,7 +763,6 @@ Should make startup faster, taken from doom-emacs
:empty-lines 1))))
#+end_src
** Org Mode Beautifers
We have to compete with notion somehow right?
*** Olivetti
#+begin_src emacs-lisp
(use-package olivetti
@ -775,12 +775,12 @@ We have to compete with notion somehow right?
:straight t
:ensure t
:custom
(org-roam-directory "~/org"
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n i" . org-roam-node-insert))
:config
(org-roam-setup)))
(org-roam-directory "~/org/notes")
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n i" . org-roam-node-insert))
:config
(org-roam-setup))
#+end_src
** Treemacs
#+begin_src emacs-lisp