Last active
November 18, 2024 05:41
-
-
Save mbigras/99d9b634cd6b3126d5ed23d77f2c4f6b to your computer and use it in GitHub Desktop.
Sublime Text 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
Show hidden characters
// Note: Put this file at the "$HOME/Library/Application Support/Sublime Text/Packages/User/Default (OSX).sublime-keymap" path. | |
[ | |
{ | |
"keys": ["super+."], | |
"command": "edit_settings", | |
"args": { | |
"base_file": "${packages}/Default/Default ($platform).sublime-keymap", | |
"default": "[\n\t$0\n]\n" | |
} | |
}, | |
{ | |
"keys": ["super+shift+k"], | |
"command": "resize_window", | |
"args": { | |
"width": 634, | |
"height": 482, | |
} | |
}, | |
] |
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
// Settings in here override those in "Default/Preferences.sublime-settings", | |
// and are overridden in turn by syntax-specific settings. | |
{ | |
"draw_unicode_white_space": "none", | |
"enable_tab_scrolling": false, | |
"folder_exclude_patterns": ["venv"], | |
"font_size": 12, | |
"hide_new_tab_button": true, | |
"ignored_packages": ["Vintage"], | |
"mini_diff": false, | |
"save_on_focus_lost": true, | |
"scroll_past_end": true, | |
"show_errors_inline": false, | |
"show_git_status": false, | |
"tab_size": 8, | |
"word_wrap": "true", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment