Move everything to folders.
* Remove not working function to create files with helm * Add SQL language file * Fine-tune emacs lisp completion settings
This commit is contained in:
parent
5bd7066cde
commit
42ebb1394d
13 changed files with 45 additions and 39 deletions
18
config/spelling.el
Normal file
18
config/spelling.el
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
;;; spelling.el -- summary
|
||||
;;; Commentary:
|
||||
|
||||
;;; Code:
|
||||
|
||||
;; Disable meta on right alt (useful for Polish characters)
|
||||
(setq ns-right-alternate-modifier nil)
|
||||
|
||||
(require 'ispell)
|
||||
;; Highlight misspelled words
|
||||
(setq ispell-program-name "aspell")
|
||||
(setq ispell-extra-args
|
||||
'("--run-together" "--run-together-limit=5" "--run-together-min=2"))
|
||||
(add-hook 'prog-mode-hook 'flyspell-mode)
|
||||
|
||||
(provide 'spelling)
|
||||
|
||||
;;; spelling.el ends here
|
||||
Loading…
Add table
Add a link
Reference in a new issue