Skip to content

Commit

Permalink
Disable spell check by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhu committed Jun 28, 2023
1 parent e338f71 commit 072dd0c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
4 changes: 0 additions & 4 deletions config/002-osx-config.el
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,4 @@
(setq delete-by-moving-to-trash t
trash-directory "~/.Trash/emacs")

;; Use aspell for spell checking: brew install aspell --lang=en
(setq ispell-program-name "aspell"
ispell-extra-args '("--sug-mode=ultra"))

(use-package reveal-in-osx-finder :ensure t))
5 changes: 0 additions & 5 deletions config/100-prog-config.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,3 @@
(use-package subword
:init (add-hook 'prog-mode-hook 'subword-mode)
:diminish "")

(use-package flyspell
:init (add-hook 'prog-mode-hook 'flyspell-prog-mode)
:config (bind-key "C-." nil flyspell-mode-map)
:diminish " ~")
1 change: 1 addition & 0 deletions config/114-clojure-config.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
(add-hook 'clojure-mode-hook
(lambda ()
(put-clojure-indent '>fn 1)
(push '(">fn" . "") prettify-symbols-alist)
(push '("partial" . ) prettify-symbols-alist)
(push '("comp" . ?ο) prettify-symbols-alist)
(require 'flycheck-clj-kondo)
Expand Down
3 changes: 3 additions & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
(set-fringe-mode '(1 . 1))
(setq use-dialog-box nil)

;; Disable spell check
(setq-default spell-checking-enable-by-default nil)

;; Setup the package management
(require 'package)
(setq package-enable-at-startup nil)
Expand Down

0 comments on commit 072dd0c

Please sign in to comment.