Last active
April 2, 2022 07:42
-
-
Save theankitgaurav/0d0b165dcd9f340fa5d9fcb7ed36c518 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": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["super+d"], "command": "duplicate_line" }, | |
{ "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} }, | |
{ "keys": ["super+shift+up"], "command": "swap_line_up" }, | |
{ "keys": ["super+shift+down"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
{ "keys": ["alt+m"], "command": "markdown_preview", "args": {"target": "browser", "parser":"markdown"} }, | |
{ "keys": ["alt+super+i"], "command": "reindent", "args": {"single_line": false}}, | |
{ "keys": ["super+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["super+p"], "command": "prompt_open" }, | |
{ "keys": ["super+shift+a"], "command": "show_overlay", "args": {"overlay": "command_palette"} }, | |
{ "keys": ["alt+up"], "command": "expand_region"}, | |
{ "keys": ["alt+down"], "command": "expand_region","args": {"undo": true},"context": [{"key": "expand_region_soft_undo"}]}, | |
{ "keys": ["super+1"], "command": "toggle_side_bar" }, | |
] |
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
{ | |
"gutter": 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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"ExpandRegion", | |
"Package Control", | |
"Pretty JSON", | |
"Sync Settings", | |
"Theme - One", | |
], | |
} |
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
{ | |
"font_size": 15, | |
"theme": "One.sublime-theme", | |
"color_scheme": "One Light.sublime-color-scheme", | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
"open_files_in_new_window": "never", | |
"find_selected_text": true, | |
"close_windows_when_empty": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment