diff options
| author | LLoyderino <adrijan.bjedov@gmail.com> | 2025-09-08 14:31:42 +0200 |
|---|---|---|
| committer | LLoyderino <adrijan.bjedov@gmail.com> | 2025-09-08 14:35:10 +0200 |
| commit | 346fc1b06049e8e2366778970d8b2fd84cf41f58 (patch) | |
| tree | 6b28c9b0e6e786349fb63f1c55ddad595b519621 /init.el | |
| parent | 10b56a188ec432c150104a6e46b9496c95c4f526 (diff) | |
Added spell checking
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -44,6 +44,11 @@ (global-set-key (kbd "M-\\") #'just-one-space) ; Leave one space instead of killing all +;; Spellcheck +(setq ispell-program-name "aspell") +(add-hook 'text-mode-hook 'flyspell-mode) +(add-hook 'prog-mode-hook 'flyspell-prog-mode) + ;; Multiple-cursors (use-package multiple-cursors :bind |
