Last active
August 29, 2019 15:56
-
-
Save Animesh-Ghosh/2ca69eb614c5d9d9978a15b2dcc41ecf to your computer and use it in GitHub Desktop.
My Sublime Text 3 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": ["alt+`"], | |
| "command": "toggle_terminus_panel" | |
| }, | |
| { | |
| "keys": ["ctrl+alt+t"], | |
| "command": "terminus_open", | |
| "args": { | |
| "cwd": "${file_path:${folder}}", | |
| } | |
| }, | |
| { | |
| "keys": ["ctrl+w"], | |
| "command": "terminus_close", | |
| "context": [{ "key": "terminus_view"}] | |
| } | |
| ] |
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
| { | |
| "enabled_plugins": | |
| [ | |
| "SimpleReloadPluginDelay" | |
| ] | |
| } |
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
| { | |
| "enabled_parsers": ["github"], | |
| "image_path_conversion": "relative", | |
| "file_path_conversions": "relative", | |
| } |
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
| { | |
| "installed_packages": | |
| [ | |
| "Behave Color Scheme", | |
| "BracketHighlighter", | |
| "FileIcons", | |
| "GithubEmoji", | |
| "LiveReload", | |
| "MarkdownPreview", | |
| "Package Control", | |
| "SublimeLinter", | |
| "TabTeleport", | |
| "Terminus", | |
| "UnicodeMath" | |
| ] | |
| } |
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
| { | |
| "color_scheme": "Packages/Behave Color Scheme/Behave.tmTheme", | |
| "font_face": "Fira Monokai", // might be windows specific only | |
| "font_size": 14, | |
| "highlight_modified_tabs": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "rulers": | |
| [ | |
| 80 | |
| ], | |
| "theme": "Adaptive.sublime-theme" | |
| } |
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
| { | |
| "shell_configs": | |
| [ | |
| { | |
| "name": "Command Prompt", | |
| "cmd": "cmd.exe", | |
| "env": {}, | |
| "enable": true, | |
| "default": false, | |
| "platforms": ["windows"] | |
| }, | |
| { | |
| "name": "Power Shell", // thanks to scoop! | |
| "cmd": "powershell.exe", | |
| "env": {}, | |
| "enable": true, | |
| "default": true, | |
| "platforms": ["windows"] | |
| }, | |
| ], | |
| "256color": true, | |
| "theme": "misterioso" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment