Update 'Home'

master
parent
commit
ac3c28a616
1 changed files with 43 additions and 0 deletions
  1. +43
    -0
      Home.md

+ 43
- 0
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
}
```

Loading…
Cancel
Save