Last active
September 7, 2025 04:03
-
-
Save textarcana/4d930ba6f00d20eae9d4eda67e67a050 to your computer and use it in GitHub Desktop.
Ubuntu 24 WSL setup for LaTeX (WINDOWS WSL)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo snap install languagetool | |
| sudo apt -y install ack \ | |
| bat \ | |
| batcat \ | |
| chktex \ | |
| cowsay \ | |
| emacs \ | |
| fzf \ | |
| luatex \ | |
| pandoc \ | |
| texlive-latex-base \ | |
| texlive-luatex \ | |
| texlive-xetex \ | |
| tree \ | |
| xclip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; sussman device configuration | |
| (require 'package) | |
| ;; Any add to list for package-archives (to add marmalade or melpa) goes here | |
| (add-to-list 'package-archives | |
| '("MELPA" . | |
| "http://melpa.org/packages/")) | |
| (package-initialize) | |
| (load-theme 'calmer-forest t) | |
| (tool-bar-mode 0) | |
| (menu-bar-mode 0) | |
| (scroll-bar-mode 0) | |
| (smart-mode-line-enable) | |
| (add-hook 'LaTeX-mode-hook 'flyspell-mode) | |
| (add-hook 'LaTeX-mode-hook 'writegood-mode) | |
| ;; navigate by words instead of letters when selecting a file path after eg C-x f | |
| (ido-mode 1) | |
| (setq ido-enable-flex-matching t) | |
| ;; code lint | |
| (add-hook 'after-init-hook #'global-flycheck-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Flycheck will flag bad grammar but you have to install
flycheck-languagetoolfrom MELPA.