From ac3c28a61684c6a427577a42a9857fa3b3f85df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerardo=20Marx=20Ch=C3=A1vez-Campos?= Date: Fri, 8 Apr 2022 04:51:59 +0000 Subject: [PATCH] Update 'Home' --- Home.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/Home.md b/Home.md index 4a80687..8645c68 100644 --- a/Home.md +++ b/Home.md @@ -48,3 +48,46 @@ To start configuring sublime follow the next steps[^1]: ] } ``` + +* After saving the file, this will automatically install all the packages necessary for the setup. You must wait between 5-10 mins for the installation to complete. Wait until a new window appears containing the information overview from previously installed packages. + +* Next open `Preferences → Settings` and paste the following: + +``` +{ + "auto_complete_triggers": + [ + { + "characters": ".", + "selector": "source.python - string - comment - constant.numeric" + }, + { + "characters": "\\", + "selector": "text.tex.latex" + } + ], + "color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme", + "default_line_ending": "unix", + "font_size": 14, + "ignored_packages": + [ + "Vintage" + ], + "open_externally_patterns": + [ + "*.jpg", + "*.jpeg", + "*.png", + "*.gif", + "*.zip", + "*.pdf" + ], + "rulers": + [ + 100 + ], + "tab_size": 4, + "theme": "Agila.sublime-theme", + "translate_tabs_to_spaces": true +} +``` \ No newline at end of file