Update .emacs.d/config.org

This commit is contained in:
Anthony Rodriguez 2024-07-02 23:07:19 +02:00
parent f030c7a8d7
commit 8aa2354663

View file

@ -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)) (add-hook 'after-save-hook #'my/reload-config-on-save))
#+end_src #+end_src
*** Discord presence
#+begin_src emacs-lisp
(use-package elcord
:config
(elcord-mode))
#+end_src
** Org mode ** Org mode
*** Pretty bullets and headlines *** Pretty bullets and headlines
I use org-superstar-mode, as it makes headlines and bullets look really nice. 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)) (setq rust-format-on-save t))
#+end_src #+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 **** tree-sitter
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq treesit-language-source-alist (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") (toml "https://github.com/tree-sitter/tree-sitter-toml")
(tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src") (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src")
(typescript "https://github.com/tree-sitter/tree-sitter-typescript" "master" "typescript/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"))) (yaml "https://github.com/ikatyang/tree-sitter-yaml")))
(add-to-list 'auto-mode-alist '("\\.ts\\'" . tsx-ts-mode)) (add-to-list 'auto-mode-alist '("\\.ts\\'" . tsx-ts-mode))