Skip to content

Instantly share code, notes, and snippets.

@siggiarni
Last active November 9, 2018 10:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siggiarni/8820807 to your computer and use it in GitHub Desktop.
Save siggiarni/8820807 to your computer and use it in GitHub Desktop.
Misc Sublime text settings
[
{ "keys": ["alt+y"], "command": "toggle_in_selection", "context": [ { "key": "setting.is_widget", "operator": "equal", "operand": true } ]
}
]
// Sublime menu > Preferences > Package Settings > LESS > Settings - User
{
"extensions":
[
"less.css"
]
}
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Flatland Dark (SL).tmTheme",
"enable_telemetry": false,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
".lock-waf*",
".tags*",
"tags",
"*.sublime-workspace",
".gitignore",
".htaccess",
".htaccess.sample",
"app/bootstrap.php",
"app/Mage.php"
],
"find_selected_text": true,
"folder_exclude_patterns":
[
".git",
".svn",
".bundle",
".sass-cache",
"._d",
".metadata",
".settings",
"Build",
"node_modules",
"dev",
"downloader",
"errors",
"includes",
"lib",
"media",
"shell",
"var",
"config"
],
"font_options":
[
"gray_antialias"
],
"font_size": 18,
"gutter": true,
"highlight_line": true,
"highlight_modified_tabs": true,
"linters": true,
"show_full_path": true,
"show_line_endings": true,
"tab_completion": true,
"tab_size": 4,
"theme": "Adaptive.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
"word_wrap": true
}
@siggiarni
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment