diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2024-03-02 10:44:44 +0000 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2024-03-02 10:44:44 +0000 |
| commit | 6e66c069a9fcecbbc4fc0f1b294bf58f87d0678a (patch) | |
| tree | 3f323f8fd3ec93636f402365a292bc628182ae8e | |
| parent | bfb7c8c981daa13286c9f3d36cddce768fce6c5b (diff) | |
emacs: Load language grammars from data directory
| -rw-r--r-- | emacs/early-init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/early-init.el b/emacs/early-init.el index 1ba4baa..9b1de6a 100644 --- a/emacs/early-init.el +++ b/emacs/early-init.el @@ -23,8 +23,9 @@ directories." (setopt package-archives '(("GNU ELPA" . "https://elpa.gnu.org/packages/") ("MELPA" . "https://melpa.org/packages/")) + package-gnupghome-dir (expand-file-name "gnupg" package-user-dir) package-user-dir (my/data-file-name "elpa") - package-gnupghome-dir (expand-file-name "gnupg" package-user-dir)) + treesit-extra-load-path `(,(my/data-file-name "tree-sitter"))) ;; Further Early Customization |
