Last active
January 18, 2023 23:53
-
-
Save hieu-tn/f797a26153827f0dd8f6790e13bf0828 to your computer and use it in GitHub Desktop.
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
// Default Preferences.sublime-settings | |
{ | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
"font_face": "Consolas", | |
"font_size": 16, | |
"match_brackets_angle": true, | |
"save_on_focus_lost": true, | |
"ensure_newline_at_eof_on_save": true, | |
"spell_check": true, | |
"minimap_horizontal_scrolling": true, | |
"goto_anything_exclude_gitignore": true, | |
"highlight_line": true, | |
"caret_extra_width": 2, | |
"line_padding_top": 1, | |
"line_padding_bottom": 1, | |
"trim_trailing_white_space_on_save": "not_on_caret", | |
"tab_size": 2, | |
"binary_file_patterns": [ | |
"*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip", | |
"vendor/*", | |
"composer.lock", | |
"node_modules/*", | |
".venv/*" | |
], | |
} | |
// Default (OSX).sublime-keymap | |
[ | |
{ "keys": ["super+d"], "command": "duplicate_line" }, | |
{ "keys": ["ctrl+g"], "command": "find_under_expand" }, | |
{ "keys": ["shift+alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["shift+alt+down"], "command": "swap_line_down" }, | |
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
{ "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} }, | |
{ | |
"keys": ["super+shift+a"], "command": "align_tab", | |
"args" : {"live_preview" : true} | |
}, | |
{ "keys": ["alt+f1"], "command": "reveal_in_side_bar" }, | |
] | |
// Default (OSX|Windows|Linux).sublime-mousemap | |
[ | |
{ | |
"button": "button1", | |
"count": 1, | |
"modifiers": ["super"], | |
"press_command": "drag_select", | |
"command": "goto_definition" | |
}, | |
{ | |
"button": "button1", | |
"count": 1, | |
"modifiers": ["alt"], | |
"press_command": "drag_select", | |
"press_args": {"additive": true} | |
} | |
] | |
// Default.sublime-theme | |
// Documentation at https://www.sublimetext.com/docs/themes.html | |
{ | |
"variables": | |
{ | |
"font_face": "Source Code Pro", | |
"font_size": 15, | |
"font_size_sm": 12, | |
}, | |
"rules": | |
[ | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment