diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-17 18:58:51 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-17 18:58:51 -0700 |
commit | b37f3a45a356d3ef940adf4e0f79ad4da8afceeb (patch) | |
tree | 449038a100d40c782e7c42a63521fe7086e2e3da | |
parent | ref(lsp): switch from lsp-mode to eglot (diff) | |
download | emacs.d-b37f3a45a356d3ef940adf4e0f79ad4da8afceeb.tar.gz |
ref(text): set abbrev-file-name
Change-Id: I626a96e103ec9da29ea2f7d756ced8b41904eb21
-rw-r--r-- | emacs/custom/my-text.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/custom/my-text.el b/emacs/custom/my-text.el index f6d984f..80cdb32 100644 --- a/emacs/custom/my-text.el +++ b/emacs/custom/my-text.el @@ -23,6 +23,7 @@ (setq markdown-command "pandoc -f markdown -t html")) (setq only-global-abbrevs nil) +(setq abbrev-file-name (expand-file-name "var/abbrev_defs" user-emacs-directory)) (let ((table text-mode-abbrev-table)) (define-abbrev table "github" "GitHub") (define-abbrev table "emacs" "Emacs")) |