# Sublime Text 编辑器的设定
> gloal setting
```
{
"caret_style": "smooth",
"default_line_ending": "unix",
"draw_white_space": "all",
"font_face": "Consolas",
"font_options":
[
"Courier New"
],
"font_size": 12,
"highlight_line": true,
"hot_exit": true,
"ignored_packages":
[
"Vintage"
],
"remember_open_files": true,
"save_on_focus_lost": true,
"show_encoding": true,
"show_line_endings": true,
"spell_check": false,
"translate_tabs_to_spaces": false,
"trim_trailing_white_space_on_save": false,
"use_tab_stops": false,
"word_wrap": "true",
"wrap_width": 0
}
```
## Package
* [Emmet](https://emmet.io/)
> [Emmet教程](http://www.cnblogs.com/EnSnail/p/6294897.html)
* SidebarEnhancements
* SidebarSeparator
* CovertToUTF8
* SublimeCodeIntel
* JavaScriptEnhancements
* TML-CSS-JS Prettify
## Build System
> nodejs
```JavaScript
{
"cmd": ["node", "$file"],
"selector": "source.js"
}
```
原文地址:https://www.cnblogs.com/MimiSnowing/p/10427032.html