diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-07 23:54:44 +0530 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-07 23:54:44 +0530 |
commit | a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346 (patch) | |
tree | e8cce8153e15e0dcc475ea6e679696dca9fc8cab /Doom/.config/doom/obsolete/no_compile.org | |
parent | 6b6055a85567c04fd9fabf67603fbeaa7e51df7b (diff) | |
download | dotfiles-a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346.tar.gz dotfiles-a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346.tar.bz2 dotfiles-a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346.zip |
(Doom)-Deleted Doom
I've superseded all the functionality I wanted in doom for quite some
time now. I don't see any reason for using it, and it usually makes
it a bit annoying to find stuff in the project due to file name
conflicts.
As a final note, thank you very much Doom Emacs (hlissner in
particular) for introducing me to this amazing software. The
community was really welcoming and I was very much eased into the
learning curve of Emacs, after coming from Vim.
Diffstat (limited to 'Doom/.config/doom/obsolete/no_compile.org')
-rw-r--r-- | Doom/.config/doom/obsolete/no_compile.org | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/Doom/.config/doom/obsolete/no_compile.org b/Doom/.config/doom/obsolete/no_compile.org deleted file mode 100644 index fb6e217..0000000 --- a/Doom/.config/doom/obsolete/no_compile.org +++ /dev/null @@ -1,53 +0,0 @@ -#+TITLE: Don't compile this -#+DESCRIPTION: Old bits and bobs that shouldn't exist anymore - -* Dashboard config -My very own dashboard config using doom dashboard, with these features: -- Custom load message -- Custom splash image and dashboard buffer name -- Custom dashboard sections for myself - -** Benchmark display -Redo the display-benchmark function to display a different message -#+BEGIN_SRC elisp -(defun doom-display-benchmark-h (&optional return-p) - "Display a benchmark, showing number of packages and modules, and how quickly -they were loaded at startup. - -If RETURN-P, return the message as a string instead of displaying it." - (funcall (if return-p #'format #'message) - "εmacs loaded %d packages, %d modules in %.03fs" - (- (length load-path) (length doom--initial-load-path)) - (if doom-modules (hash-table-count doom-modules) 0) - (or doom-init-time - (setq doom-init-time - (float-time (time-subtract (current-time) before-init-time)))))) -#+END_SRC - -** Image and buffer name -Set the splash-image and dashboard buffer name -Space image comes from [[https://flaticon.com][website]] -#+BEGIN_SRC elisp -(setq fancy-splash-image "~/Pictures/SplashScreens/space2.png") ; splash image -(setq +doom-dashboard-name "*dashboard*") -#+END_SRC -** Dashboard items -Set the dashboard functions (segments in overall buffer), set the sections of the interactive menu as well. -#+BEGIN_SRC elisp -(setq +doom-dashboard-functions ; limit the dashboard items - '(doom-dashboard-widget-banner - doom-dashboard-widget-loaded - doom-dashboard-widget-shortmenu)) - -(setq +doom-dashboard-menu-sections ; Set a specific amount of items - '(("Open org-agenda" - :icon (all-the-icons-octicon "calendar" :face 'font-lock-keyword-face) - :when (fboundp 'org-agenda) - :action org-agenda) - ("Jump to bookmark" - :icon (all-the-icons-octicon "bookmark" :face 'font-lock-keyword-face) - :action bookmark-jump) - ("Open project" - :icon (all-the-icons-material "folder" :face 'font-lock-keyword-face) - :action projectile-switch-project))) -#+END_SRC |