https://github.com/doasync/sublime-text-3-settings
Sublime Text 3 config pack
https://github.com/doasync/sublime-text-3-settings
Last synced: about 1 month ago
JSON representation
Sublime Text 3 config pack
- Host: GitHub
- URL: https://github.com/doasync/sublime-text-3-settings
- Owner: doasync
- Created: 2017-06-29T22:31:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-04T17:16:07.000Z (almost 9 years ago)
- Last Synced: 2026-03-04T00:32:45.099Z (3 months ago)
- Size: 61.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sublime Text 3 Settings (by DoAsync)


### Packages
Packages installed from [Package Control](https://packagecontrol.io)
- A File Icon
- All Autocomplete
- Babel
- Boxy Theme
- BracketHighlighter
- CSS3
- DocBlockr
- Emmet
- FileDiffs
- GitGutter
- Hayaku - tools for writing CSS faster
- HTML-CSS-JS Prettify
- JavaScript Completions
- LESS
- Less Tabs
- Local History
- Package Control
- Sass
- SideBarEnhancements
- SublimeCodeIntel
- SublimeLinter
- SublimeLinter-contrib-eslint
- SyncedSideBar
- Tab Filter
- TabsExtra
### Installation
1. Go to *Preferences -> Browse packages...*
2. Open `User` folder
3. Clone the repo to this folder
#### Windows 10
```bash
cd %AppData%\Sublime Text 3\Packages\User
git clone https://github.com/doasync/sublime-text-3-settings.git .
```
#### Ubuntu 17
```bash
cd ~/.config/sublime-text-3/Packages/User
git clone https://github.com/doasync/sublime-text-3-settings.git .
```
### General config
```json
{
"always_show_minimap_viewport": true,
"auto_complete_with_fields": true,
"auto_find_in_selection": true,
"caret_style": "blink",
"detect_indentation": false,
"drag_text": true,
"draw_white_space": "selection",
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "UTF-8",
"show_encoding": true,
"folder_exclude_patterns": [".sass-cache", "node_modules"],
"font_options": ["directwrite", "subpixel_antialias"],
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages": ["Vintage", "ZenCoding"],
"line_padding_bottom": 1,
"line_padding_top": 1,
"open_files_in_new_window": false,
"tab_size": 2,
"hot_exit": true,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?",
"word_wrap": "false"
}
```