Last active
January 7, 2021 22:26
-
-
Save bernardoadc/614d4e4d012ccdf93286b6a005caf665 to your computer and use it in GitHub Desktop.
Sublime 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
Package Control.last-run | |
Package Control.ca-list | |
Package Control.ca-bundle | |
Package Control.system-ca-bundle | |
Package Control.cache/ | |
Package Control.ca-certs/ |
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
[ | |
{ "keys": ["super+alt+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["super+alt+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["alt+down"], "command": "swap_line_down" }, | |
//{ "keys": ["shift+capslock"], "command": "upper_case" }, | |
//{ "keys": ["ctrl+capslock"], "command": "lower_case" }, | |
{ | |
"keys": ["ctrl+shift+g", "ctrl+shift+g"], | |
"command": "shell_exec_open", | |
"args": { "title": "Git Command:", "format": "git ${input}" } | |
} | |
] |
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+alt+shift+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["ctrl+alt+shift+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["super+alt+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["super+alt+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["alt+down"], "command": "swap_line_down" }, | |
//{ "keys": ["shift+capslock"], "command": "upper_case" }, | |
//{ "keys": ["ctrl+capslock"], "command": "lower_case" }, | |
{ | |
"keys": ["ctrl+shift+g", "ctrl+shift+g"], | |
"command": "shell_exec_open", | |
"args": { "title": "Git Command:", "format": "git ${input}" } | |
} | |
] |
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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Emoji", | |
"HexViewer", | |
"Package Control", | |
"ShellCommand", | |
"Shell Exec" | |
] | |
} |
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
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
{ | |
"always_show_minimap_viewport": true, | |
"color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"save_on_focus_lost": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment