17 lines
490 B
EmacsLisp
17 lines
490 B
EmacsLisp
;;; $DOOMDIR/lisp/gnu-linux.el --- GNU/Linux specific configuration -*- lexical-binding: t; -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
(require 'doom)
|
|
|
|
(after!
|
|
ispell (setq ispell-dictionary "en_US")
|
|
;; Hunspell won't create it, and ispell needs this file specified to work
|
|
(setq ispell-personal-dictionary "~/.hunspell_en_US"))
|
|
|
|
;; For elisp-autofmt
|
|
;; Local variables:
|
|
;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core")
|
|
;; end:
|
|
(provide 'gnu-linux)
|
|
;;; gnu-linux.el ends here
|