Skip to content

Instantly share code, notes, and snippets.

@SaKKo
Created May 29, 2024 06:57
Show Gist options
  • Save SaKKo/229091392e9ef9d75d1b5c9b5f4c48dd to your computer and use it in GitHub Desktop.
Save SaKKo/229091392e9ef9d75d1b5c9b5f4c48dd to your computer and use it in GitHub Desktop.
Sublime config
## Packages
- Babel
- BracketFlasher
- BracketHighlighter
- Color Highlight
- Console Wrap
- Dockerfile Syntax
- EJS 2
- ESLint-Formatter
- FileIcons Mono
- Git Blame
- GitGutter
- HTML Beautify
- JS Format
- JS Prettier
- JSX
- PlantUMLDiagrams
- Pretty YAML
- rainbox_csv
- SidebarEnhancements
- Sort Javascript Imports
- sublime-rufo
- SublimeERB
- SublimeLinter
- SublimeLinter-rubocop
- Svelte
- SyncSettings
- VueSyntaxHighlight
## Preferences.sublime-settings
```json
{
"font_size": 17,
"ignored_packages":
[
"Vintage",
],
"word_wrap": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"theme": "Adaptive.sublime-theme",
"color_scheme": "Packages/Babel/Next.tmTheme",
"auto_complete_delay": 250,
"hardware_acceleration": "opengl",
"draw_white_space": "all",
"scroll_past_end": true,
/*"translate_tabs_to_spaces": true,*/
"extra_file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
".directory",
"desktop.ini",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace"
],
"extra_folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".Trash",
".Trash-*"
],
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
".directory",
"desktop.ini",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace",
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".Trash",
".Trash-*",
],
}
```
## Keybindings
```json
[{
"keys": ["ctrl+alt+c"],
"command": "console_wrap",
"args": {
"insert_before": false
}
}, {
"keys": ["super+shift+e"],
"command": "emmet_expand_abbreviation"
}, {
"keys": ["super+shift+."],
"command": "erb"
}]
```
## Console Wrap Keybinding
```json
[{
"keys": ["ctrl+alt+c"],
"command": "console_wrap",
"args": {
"insert_before": false
}
}, {
"keys": ["super+shift+e"],
"command": "emmet_expand_abbreviation"
}, {
"keys": ["super+shift+."],
"command": "erb"
}]
```
## Emmet Key bindings
```json
[{
"keys": ["ctrl+alt+c"],
"command": "console_wrap",
"args": {
"insert_before": false
}
}, {
"keys": ["super+shift+e"],
"command": "emmet_expand_abbreviation"
}, {
"keys": ["super+shift+."],
"command": "erb"
}]
```
## sublime rufo settings
```json
{
"auto_format": true,
"rufo_cmd": "/Users/sakko/.rvm/gems/ruby-3.1.2/bin/rufo"
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment