Overhaul rcfiles; fast startup!
This commit is contained in:
parent
3231a145e7
commit
0b5c7add55
31 changed files with 940 additions and 819 deletions
22
init/init-fly.el
Normal file
22
init/init-fly.el
Normal file
|
@ -0,0 +1,22 @@
|
|||
(mapc 'my/install-package '(flycheck flyspell))
|
||||
|
||||
(use-package flycheck
|
||||
:commands global-flycheck-mode
|
||||
:diminish (flycheck-mode . " !")
|
||||
:init (add-hook 'after-init-hook #'global-flycheck-mode)
|
||||
:config
|
||||
(progn
|
||||
;; Removed checks on idle/change for snappiness
|
||||
(setq flycheck-check-syntax-automatically '(save new-line mode-enabled))
|
||||
(setq flycheck-indication-mode 'right-fringe)
|
||||
(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))))
|
||||
|
||||
(use-package flyspell
|
||||
:commands flyspell-mode
|
||||
:diminish (flyspell-mode . " @")
|
||||
:config
|
||||
(setq ispell-program-name "aspell"
|
||||
ispell-list-command "--list"))
|
||||
|
||||
;;
|
||||
(provide 'init-fly)
|
Loading…
Add table
Add a link
Reference in a new issue