Compare commits

...

3 Commits

2 changed files with 27 additions and 2 deletions
Unified View
  1. +4
    -2
      .emacs
  2. +23
    -0
      Readme.md

+ 4
- 2
.emacs View File

@ -62,6 +62,8 @@
'(font . "Source Code Pro-18")) '(font . "Source Code Pro-18"))
;;+++++++ ;;+++++++
;;auctex: ;;auctex:
(is-installed 'auctex)
(setenv "PATH" (concat "/Library/TeX/texbin:" (setenv "PATH" (concat "/Library/TeX/texbin:"
(getenv "PATH"))) (getenv "PATH")))
(add-to-list 'exec-path "/Library/TeX/texbin") (add-to-list 'exec-path "/Library/TeX/texbin")
@ -85,7 +87,7 @@
;;--------- ;;---------
;;======== ;;========
;;Flyspell ;;Flyspell
(setq ispell-program-name "/usr/local/bin/aspell")
(setq ispell-program-name "/usr/bin/aspell")
;(setq ispell-aspell-data-dir "/usr/local/Cellar/ispell/3.4.04/lib/ispell/") ;(setq ispell-aspell-data-dir "/usr/local/Cellar/ispell/3.4.04/lib/ispell/")
;(setq ispell-aspell-dict-dir ispell-aspell-data-dir) ;(setq ispell-aspell-dict-dir ispell-aspell-data-dir)
(dolist (hook '(text-mode-hook)) (dolist (hook '(text-mode-hook))
@ -122,7 +124,7 @@
;; If there is more than one, they won't work right. ;; If there is more than one, they won't work right.
'(package-selected-packages '(package-selected-packages
(quote (quote
(docker-compose-mode markdown-mode org-ref doom-modeline all-the-icons doom-themes which-key helm use-package))))
(auctex docker-compose-mode markdown-mode org-ref doom-modeline all-the-icons doom-themes which-key helm use-package))))
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.


+ 23
- 0
Readme.md View File

@ -3,6 +3,29 @@ This repository contains the basic configuration to work with emacs for compile
Markdown and Docker tested with MacOS, Ubuntu and Windows. Markdown and Docker tested with MacOS, Ubuntu and Windows.
This configuration is used with the research seminar 101. This configuration is used with the research seminar 101.
# Spell-Checking
## For Ubuntu
It is recommended to install and use `ispell`. Thus, to install use:
```
$ sudo apt-get update
$ sudo apt-get install -y aspell
```
## For MacOS
```
$ brew install aspell
```
## For Arch
```
$ pacman -S aspell
```
## For Windows
Use pacman and ispell (not tested ye)
# Known issues # Known issues
## Windows ## Windows

Loading…
Cancel
Save