Skip to content

Instantly share code, notes, and snippets.

@jlozovei
Last active March 8, 2023 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlozovei/8d70f99f1d745330011c9e553034d644 to your computer and use it in GitHub Desktop.
Save jlozovei/8d70f99f1d745330011c9e553034d644 to your computer and use it in GitHub Desktop.
My personal Sublime Text settings

📋 Sublime general info

  • Theme: Seti.sublime-theme (Seti_UI)
  • Color scheme: Monokai Phoenix (JavaScriptNext - ES6 Syntax)

📦 Packages I'm currently using:

{
"auto_format_on_save": true,
"auto_format_on_save_excludes": [
"*/node_modules/*",
"*.json",
"*.md",
"*.html",
"*.min*"
],
"prettier_options": {
"printWidth": 100,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "none"
}
}
{
"color_scheme": "Packages/JavaScriptNext - ES6 Syntax/Monokai Phoenix.tmTheme",
"folder_exclude_patterns":
[
".svn",
".tmp",
".git",
".hg",
"CVS",
"node_modules"
],
"font_size": 18,
"ignored_packages":
[
"Vintage",
],
"margin": 2,
"tab_size": 2,
"theme": "Seti.sublime-theme",
"translate_tabs_to_spaces": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment