From 8aa2354663159bbad2ea5e440eae445c18427017 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 2 Jul 2024 23:07:19 +0200 Subject: [PATCH] Update .emacs.d/config.org --- private_dot_emacs.d/config.org | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/private_dot_emacs.d/config.org b/private_dot_emacs.d/config.org index 8c9f212..808dff1 100644 --- a/private_dot_emacs.d/config.org +++ b/private_dot_emacs.d/config.org @@ -219,6 +219,12 @@ This allows to tangle automatically when saving the config. This is mostly for c (add-hook 'after-save-hook #'my/reload-config-on-save)) #+end_src +*** Discord presence +#+begin_src emacs-lisp + (use-package elcord + :config + (elcord-mode)) +#+end_src ** Org mode *** Pretty bullets and headlines I use org-superstar-mode, as it makes headlines and bullets look really nice. @@ -287,14 +293,6 @@ Magit is a git client in Emacs. (setq rust-format-on-save t)) #+end_src -**** Typst -#+begin_src emacs-lisp - (use-package typst-ts-mode - :quelpa (typst-ts-mode :fetcher git :url "https://git.sr.ht/~meow_king/typst-ts-mode" :files ("*.el")) - :custom - (typst-ts-mode-grammar-location (expand-file-name "tree-sitter/libtree-sitter-typst.so" user-emacs-directory))) -#+end_src - **** tree-sitter #+begin_src emacs-lisp (setq treesit-language-source-alist @@ -312,7 +310,6 @@ Magit is a git client in Emacs. (toml "https://github.com/tree-sitter/tree-sitter-toml") (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src") (typescript "https://github.com/tree-sitter/tree-sitter-typescript" "master" "typescript/src") - (typst "https://github.com/uben0/tree-sitter-typst") (yaml "https://github.com/ikatyang/tree-sitter-yaml"))) (add-to-list 'auto-mode-alist '("\\.ts\\'" . tsx-ts-mode))