Created
August 17, 2020 14:44
-
-
Save hacker0limbo/e89aebeb5d51f9eb5a3d4a6fde285adf to your computer and use it in GitHub Desktop.
dot files
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
[ | |
{ "keys": ["ctrl+w"], "command": "delete_word", "args": { "forward": false, "sub_words": true } }, | |
{ "keys": ["ctrl+u"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard BOL.sublime-macro"} } | |
] |
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
{ | |
"binary_file_patterns": | |
[ | |
"node_modules/**", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip" | |
], | |
"color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme", | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.sublime-workspace" | |
], | |
"font_face": "Operator Mono Light", | |
"font_size": 15, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"shift_tab_unindent": true, | |
"tab_size": 2, | |
"theme": "Adaptive.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"word_wrap": true | |
} |
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
{ | |
// 以像素为单位控制字号。 | |
"editor.fontSize": 15, | |
// 控制字体系列。 | |
"editor.fontFamily": "Consolas, Monaco, OperatorMono-Light, 'Courier New', monospace", | |
"editor.snippetSuggestions": "inline", | |
// 定义字体的粗细 | |
"editor.fontWeight": "100", | |
"window.zoomLevel": 0, | |
"html.format.wrapLineLength": 0, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.copyOnSelection": true, | |
"terminal.integrated.confirmOnExit": true, | |
"editor.suggestSelection": "first", | |
"editor.formatOnSave": false, | |
// 默认所有的 tab 为 2 格 | |
"editor.tabSize": 2, | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"terminal.integrated.fontFamily": "Monaco", | |
"breadcrumbs.enabled": true, | |
// 设置语言的 indention | |
"[python]": { | |
"editor.tabSize": 4 | |
}, | |
"extensions.ignoreRecommendations": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.cursorBlinking": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"oneDarkPro.vivid": true, | |
"oneDarkPro.editorTheme": "onedarkPro", | |
"workbench.statusBar.visible": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.semanticHighlighting.enabled": true, | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"http.proxySupport": "off", | |
"workbench.preferredDarkColorTheme": "One Dark Pro", | |
"workbench.colorTheme": "One Dark Pro", | |
"editor.foldingStrategy": "indentation", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.rename.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.renameOnType": true | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment