Skip to content

Instantly share code, notes, and snippets.

@jlevallois
Last active July 22, 2021 10:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlevallois/cc37842952f823363ebf to your computer and use it in GitHub Desktop.
Save jlevallois/cc37842952f823363ebf to your computer and use it in GitHub Desktop.
Adding French dictionnary in Sublime Text 3
#!/bin/sh
cd ~/.config/sublime-text-3/Packages
mkdir "Language - French"
cd "Language - French"
wget https://raw.githubusercontent.com/titoBouzout/Dictionaries/master/French.dic
wget https://raw.githubusercontent.com/titoBouzout/Dictionaries/master/French.aff
wget https://raw.githubusercontent.com/titoBouzout/Dictionaries/master/French.txt # <- credits
## And activate the French dictionary in SublimeText3:
## View > Dictionary > Language-French > French
@madeindjs
Copy link

Thank you a lot! I quickly setup with this online command

$ curl https://gist.githubusercontent.com/jlevallois/cc37842952f823363ebf/raw/6c7a2f2baeb6654d3986052914c89d3d883635d7/add-french-dic-sublime-text-3.sh | bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment