Tips: When you see this prompt, it means that the current article has been migrated from the original emlog blog system. The publication time of the article is too long ago, and the formatting and content may not be complete. Please understand.
Note: Sublime Text3 Configuration
Date: 2017-12-28 Ajue Talks and Chats Views: 1558 times Comments: 1
Save it
Sublime Text3's configuration information, so that you don't have to look for it again next time you lose it.
Configuration:#
{
"font_size": 21, // Set font size
"word_wrap": true, // Automatic line break
"update_check": false, // Disable update check
"font_face": "Courier New", // Set font
"highlight_modified_tabs": true, // Highlight modified files
"create_window_at_startup": false, // Disable automatic opening of new windows at startup
"open_files_in_new_window": false, // Disable opening files in new windows
"highlight_line": true, // Highlight the current line
"show_encoding": true, // Display encoding type in the lower right corner
"open_files_in_new_window": false, // Disable opening in new window every time
"caret_style": "phase", // Set cursor blinking style
"line_padding_top": 5, // Line top padding
"line_padding_bottom": 5, // Line bottom padding
"fade_fold_buttons": false, // Always show code folding icons
"translate_tabs_to_spaces": false // Use spaces instead of tabs
}
Plugins:#
Install the plugin manager: Open the console by pressing ctrl+` or View > Show Console menu
import urllib.request,os;pf='Package Control.sublime-
package';ipp=sublime.installed_packages_path();urllib.request.install_opener
(urllib.request.build_opener(urllib.request.ProxyHandler()));open(os.path.join
(ipp,pf),'wb').write(urllib.request.urlopen('http://sublime.wbond.net/'+pf.replace('
','%20')).read())
List:#
Emmet
JsFormat
DocBlockr
GBK Support
AutoFileName
ConvertToUTF8
BracketHighlighter
Fonts:#
Helvetica
Ubuntu Mono
Menlo-Regular
Source Han Sans SC
User Comments:
′Qian Xuan 3 years ago (2018-01-19)
Okay, this configuration is good. Borrowed it.