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