Skip to content

Instantly share code, notes, and snippets.

@ShinyChang
Created October 15, 2015 03:24
Show Gist options
  • Save ShinyChang/14ca7a46d20a7981c2b6 to your computer and use it in GitHub Desktop.
Save ShinyChang/14ca7a46d20a7981c2b6 to your computer and use it in GitHub Desktop.
Sublime Text 3 Settings - User
{
"added_words": // 新增到字典的單字
[
"php",
"href",
"td"
],
"always_show_minimap_viewport": true, // 永遠顯示 minimap 目前顯示的區域
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip"
],
"caret_extra_width": 2, // 把光標加粗,看起來比較清楚
"color_scheme": "Packages/User/Sunburst (SL).tmTheme",
"enable_tab_scrolling": false, // 關掉 TAB 左右按鈕
"ensure_newline_at_eof_on_save": true, // 確保檔案結尾一訂有一個空行
"file_exclude_patterns": // 不搜尋的檔案名稱
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace"
],
"folder_exclude_patterns": // 不搜尋的目錄
[
".svn",
".git",
".hg",
"CVS",
"sysdata",
"streaming",
"converter",
"node_modules",
"scip/upload_tmp"
],
"font_face": "Hack", // 字型
"font_options": // 中文字型
[
"directwrite"
],
"font_size": 11,
"highlight_line": true, // hightlight目前編輯的行
"highlight_modified_tabs": true, // 修改過的 TAB 標記
"ignored_packages": // 預設停用的 packages
[
"Sublimall",
"Vintage"
],
"show_encoding": true, // 右下角檢視檔案編碼
"show_line_endings": true,
"tab_size": 4, // 每次 TAB 使用 4 個空白縮排
"translate_tabs_to_spaces": true, // 轉換 TAB 成 4 個空白
"trim_trailing_white_space_on_save": true // 存檔時移除行尾的空白
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment