Guest User

Untitled

a guest
Dec 13th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. ~/.emacs.d/abbrev_defs
  2.  
  3. M-x load-file RET
  4. ~/.emacs
  5. M-x load-file RET
  6. ~/.emacs.d/init.el
  7.  
  8. (setq-default abbrev-mode t)
  9.  
  10. (setq abbrev-file-name ;; tell emacs where to read abbrev
  11. "~/.emacs.d/abbrev_defs") ;; definitions from...
  12.  
  13. (setq save-abbrevs 'silent) ;; save abbrevs when files are saved
  14.  
  15. (add-hook 'text-mode-hook #'abbrev-mode)
Add Comment
Please, Sign In to add comment