Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bboydflo/cd8dcdad721635642545bb1aba064e6d to your computer and use it in GitHub Desktop.
Save bboydflo/cd8dcdad721635642545bb1aba064e6d to your computer and use it in GitHub Desktop.
Sublime Text 3 Configuration Files

My Sublime Text 3 Configuration

Sublime Package Control of course - https://sublime.wbond.net/

Font

I use the Default Font (don't really know what is it)

Alternative: Source Code Pro Light from Adobe Source Code Pro.

Theme

Material Theme

Alternatives:

Color Theme (syntax highlighting color)

"color_scheme": "Packages/User/SublimeLinter/Material-Theme-OceanicNext (SL).tmTheme"

or

"color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme"

Installed Packages

[
{ "keys": ["ctrl+pagedown"], "command": "next_view" },
{ "keys": ["ctrl+pageup"], "command": "prev_view" }
]
[
{ "keys": ["ctrl+0"], "command": "reset_font_size" },
{ "keys": ["ctrl+pagedown"], "command": "next_view" },
{ "keys": ["ctrl+pageup"], "command": "prev_view" }
]
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"AdvancedNewFile",
"ApacheConf.tmLanguage",
"ApplySyntax",
"Babel",
"BracketHighlighter",
"Color Highlighter",
"ColorPicker",
"DocBlockr",
"Dotfiles Syntax Highlighting",
"EditorConfig",
"Emmet",
"ExportHtml",
"GitGutter",
"Handlebars",
"Markdown Preview",
"Material Theme",
"Package Control",
"Sass",
"SCSS",
"SublimeLinter",
"SublimeLinter-contrib-eslint",
"SublimeLinter-contrib-scss-lint",
"SublimeLinter-csslint",
"Terminal",
"tern_for_sublime",
"TrailingSpaces",
"VBScript",
"Vue Syntax Highlight"
]
}
{
"always_show_minimap_viewport": true,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
},
{
"characters": ".",
"selector": "source.js"
}
],
"auto_ident": true,
"bold_folder_labels": true,
"caret_extra_bottom": 3,
"caret_extra_top": 3,
"caret_extra_width": 2,
"color_scheme": "Packages/User/SublimeLinter/Material-Theme-OceanicNext (SL).tmTheme",
// "color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme",
"draw_minimap_border": true,
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "UTF-8",
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
".tags",
".tags_sorted_by_file",
"*.log",
"*.png",
"*.jpg",
"*.jpeg",
"*.gif",
"*.bmp",
"*.pxm",
"*.psd"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"tmp/class-*",
"tmp/es_*",
"tmp/jshinter*",
"tmp/replace_*",
"tmp/static_compiler*",
"tmp/template_compiler*",
"tmp/tree_merger*",
"tmp/coffee_script*",
"tmp/concat-tmp*",
"tmp/export_tree*",
"tmp/sass_compiler*"
],
"font_options":
[
"no_bold",
"subpixel_antialias"
],
"gutter": true,
"highlight_line": true,
"highlight_modified_tabs": true,
"hot_exit": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"indent_to_bracket": false,
"line_padding_bottom": 3,
"line_padding_top": 3,
"material_theme_bold_tab": true,
"material_theme_panel_separator": true,
"material_theme_small_tab": true,
"material_theme_tabs_autowidth": true,
"material_theme_tabs_separator": true,
"overlay_scroll_bars": "disabled",
"remember_open_files": true,
"remember_open_folders": true,
"smart_indent": true,
"tab_size": 4,
"theme": "Material-Theme.sublime-theme",
"translate_tabs_to_spaces": false,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment