| | |
| | | (setq-default ispell-program-name "aspell")
|
| | | (setq-default ispell-local-dictionary "en_AU"))
|
| | | #+END_SRC
|
| | | ** COMMENT Language Tool
|
| | | ** Language Tool
|
| | | Language tool is an open source grammar checker.
|
| | | #+BEGIN_SRC emacs-lisp
|
| | | (use-package langtool
|
| | |
| | | ("M-y" . helm-show-kill-ring)
|
| | | ("C-x b" . helm-mini)
|
| | | ("C-c h o" . helm-occur))
|
| | | :diminish helm-mode
|
| | | :config
|
| | | (setq helm-mode-fuzzy-match t
|
| | | helm-completion-in-regionfuzzy-match t
|
| | |
| | | (cond ((eq system-type 'windows-nt)
|
| | | (when (file-exists-p "c:/ProgramData/chocolatey/lib/plantuml/tools/plantuml.jar")
|
| | | (setq plantuml-jar-path "c:/ProgramData/chocolatey/lib/plantuml/tools/plantuml.jar")
|
| | | (setq planuml-default-exec-mode 'jar)))
|
| | | (setq plantuml-default-exec-mode 'jar)))
|
| | | ((eq system-type 'gnu/linux)
|
| | | (when (file-exists-p "/usr/share/java/plantuml/plantuml.jar")
|
| | | (setq plantuml-jar-path "/usr/share/java/plantuml/plantuml.jar")
|
| | | (setq planuml-default-exec-mode 'jar)))))
|
| | | (setq plantuml-default-exec-mode 'jar)))))
|
| | | #+END_SRC
|
| | |
|
| | | *** COMMENT Racket
|
| | |
| | | verilog-indent-level-module 4))
|
| | | #+END_SRC
|
| | | #+END_SRC
|
| | | *** COMMENT MATLAB
|
| | | *** MATLAB
|
| | | Mode for editing MATLAB m-files.
|
| | | #+BEGIN_SRC emacs-lisp
|
| | | (use-package matlab
|
| | |
| | | '("\\.m$" . matlab-mode))
|
| | | (setq matlab-indent-function t)
|
| | | (setq matlab-shell-command "matlab")
|
| | | (matlab-cedet-setup))
|
| | | (matlab-cedet-setup)
|
| | | (add-to-list 'company-backends 'company-matlab-shell))
|
| | | #+END_SRC
|
| | |
|
| | | *** COMMENT MIPS
|