Created
December 3, 2012 01:42
-
-
Save fitzyyf/4192087 to your computer and use it in GitHub Desktop.
My Sublime text 2 Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 代码提示的控制范围 | |
"auto_complete_selector": "source", | |
// 主题设置 | |
"color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
// 代码地图的可视区域部分加上边框 | |
"draw_minimap_border": true, | |
// 字体设置 | |
"font_face": "PT Mono", | |
// 字体大小 | |
"font_size": 14, | |
// 高亮当前行 | |
"highlight_line": true, | |
// 忽略的插件 | |
"ignored_packages": [ | |
"Vintage" | |
], | |
// 行号边栏和文字的间距 | |
"margin": 4, | |
"class": "tab_close_button", | |
"settings": [ | |
"show_tab_close_buttons" | |
], | |
"content_margin": [ | |
0, | |
0 | |
], | |
// 在新的窗口中打开新文件 | |
"open_files_in_new_window": false, | |
// 防止被缩进到同一级的字换行 | |
"indent_subsequent_lines": true, | |
// 主题风格设置 | |
"theme": "Soda Dark.sublime-theme", | |
// Tab键制表符宽度 | |
"tab_size": 4, | |
// 默认的文件字符集 | |
"default_encoding":"utf-8", | |
// 选中的文本按Command + f时,自动复制到查找面板的文本框里 | |
"find_selected_text": true, | |
// 标签页的关闭按钮 | |
"show_tab_close_buttons": false, | |
// 哪些文件甲会被显示到边栏上 | |
"folder_exclude_patterns":[".svn", ".git", ".hg", "CVS",".idea",".settings"], | |
// 排除的文件 | |
"file_exclude_patterns":["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db","*.DS_Store",".gitignore","*.iml",".project"], | |
// 二进制文件 | |
"binary_file_patterns":["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip"], | |
// 自动换行 | |
"word_wrap": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment