jack-zheng
5/4/2018 - 6:17 AM

ide, sublime, setting

ide, sublime, setting

Package List:
1. Package Control - tool for easy install package
2. Anaconda - enable code navigation, autocomplete
3. Boxy Theme - beautiful look of side bar and text content

### Shortcut
Ctrl + Shift + p: open package control, then type 'install package' to install package you want

side bar: this is a function that support by default, just File -> open folder to get it

### Others
install Fira Code to make your Font more comfortable

### Apply Setting To Sublime
Preferences -> Setting -> Preferences.sublime-settings -- User, past
```
{
	// font setting, using Fira code 
	"font_face": "Fira Code",
	"font_size": 11,

	// boxy theme setting
	"theme": "Boxy Monokai.sublime-theme",
	"color_scheme": "Packages/Boxy Theme/schemes/Boxy Monokai.tmTheme",

	// setting for tab-space convert
	"tab_size": 4,
	"translate_tabs_to_spaces": true,

	// default setting
	"ignored_packages":
	[
		"Vintage"
	],
}

anocoda 小白格: Sublime>Perferences>Package Settings>Anaconda>Setting User 增加一句配置 {"anaconda_linting":false}
```

[Fira Code Git](https://github.com/tonsky/FiraCode)