diff options
author | Franck Cuny <franck@fcuny.net> | 2023-11-10 19:58:45 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-11-10 19:59:10 -0800 |
commit | 2f45466f2bcf0911690e15666dbebb2e2593f0aa (patch) | |
tree | 269409be29bcfb40a95f7639335a95dd1f2bd487 | |
parent | load snippets (diff) | |
download | emacs.d-2f45466f2bcf0911690e15666dbebb2e2593f0aa.tar.gz |
don't load major mode for toml until needed
-rw-r--r-- | init.org | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/init.org b/init.org index 7b29342..db49018 100644 --- a/init.org +++ b/init.org @@ -1050,6 +1050,7 @@ Enable eglot and tree-sitter when working with python. #+begin_src emacs-lisp (use-package toml-mode + :defer t :ensure t) #+end_src |