Skip to content

Commit

Permalink
emacs: add discord activity package
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborpilz committed Apr 3, 2024
1 parent 1163639 commit 1bd4c22
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions home/config/doom/config.el
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

(setq fancy-splash-image (concat doom-private-dir "splash-logos/emacs-logo-cutout.svg"))

(setq frame-title-format "%b - Emacs")

(defun add-hooks (hook-list function)
"Add FUNCTION to all hooks in HOOK-LIST."
(dolist (hook hook-list)
Expand Down
11 changes: 11 additions & 0 deletions home/config/doom/config.org
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ well with a variety of color schemes.
(setq fancy-splash-image (concat doom-private-dir "splash-logos/emacs-logo-cutout.svg"))
#+end_src

** Title
I'm setting the title to be just "Emacs"

#+begin_src elisp
(setq frame-title-format "%b - Emacs")
#+end_src
* Utils
For efficiently writing my config, I need some utils.
** Add-Hooks
Expand Down Expand Up @@ -1630,6 +1636,11 @@ Various tweaks to improve the overall performance.
(fset #'jsonrpc--log-event #'ignore)
#+end_src
* Unsorted Packages
** Discord Presence
#+begin_src elisp :tangle packages.el
(package! elcord)
#+end_src
** Misc
#+begin_src elisp :tangle packages.el

(package! dap-mode)
Expand Down
2 changes: 2 additions & 0 deletions home/config/doom/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@

(package! k8s-mode)

(package! elcord)

(package! dap-mode)

;; HTTP requests via babel
Expand Down

0 comments on commit 1bd4c22

Please sign in to comment.