Last active
November 29, 2024 16:13
-
-
Save ffflorian/7427192 to your computer and use it in GitHub Desktop.
Sublime text settings
This file contains hidden or 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
[ | |
{ "keys": ["f12"], "command": "save_all" }, | |
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" }, | |
{ "keys": ["ctrl+shift+r"], "command": "revert_all" }, | |
{ "keys": ["ctrl+up"], "command": "swap_line_up" }, | |
{ "keys": ["ctrl+down"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} }, | |
] |
This file contains hidden or 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": ["super+shift+o"], "command": "prompt_open_folder" }, | |
{ "keys": ["super+shift+r"], "command": "revert_all" }, | |
{ "keys": ["alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["alt+down"], "command": "swap_line_down" }, | |
{ "keys": ["alt+super+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["alt+super+down"], "command": "select_lines", "args": {"forward": true} }, | |
] |
This file contains hidden or 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
{ | |
"line_numbers": true, | |
"wrap_width": 150 | |
} |
This file contains hidden or 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
{ | |
"bootstrapped": true, | |
"in_process_packages": [], | |
"installed_packages": | |
[ | |
"ColorPicker", | |
"Material Theme", | |
"Package Control", | |
"SideBarEnhancements" | |
] | |
} |
This file contains hidden or 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
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete": false, | |
"bold_folder_labels": true, | |
"caret_style": "solid", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"default_encoding": "UTF-8", | |
"default_line_ending": "LF", | |
"draw_white_space": "selection", | |
"enable_telemetry": false, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "SourceCodePro", | |
"font_size": 11, | |
"highlight_line": true, | |
"hot_exit": false, | |
"word_wrap": false, | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"line_padding_bottom": 3, | |
"line_padding_top": 3, | |
"overlay_scroll_bars": "enabled", | |
"remember_open_files": false, | |
"rulers": | |
[ | |
100 | |
], | |
"show_definitions": false, | |
"tab_completion": false, | |
"tab_size": 2, | |
"theme": "Material-Theme.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"update_check": true, | |
"wide_caret": true, | |
"index_files": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment